9 lines
188 B
Nix
9 lines
188 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [ ../../nixos/wsl.nix ];
|
|
|
|
networking.hostName = "elistraee";
|
|
system.stateVersion = "25.05";
|
|
|
|
programs.gnupg.agent.pinentryPackage = pkgs.pinentry-tty;
|
|
}
|