nixos/hosts/elistraee/default.nix

11 lines
254 B
Nix

{ pkgs, ... }:
{
imports = [ ../../nixos ];
nixos-wsl.enable = true; # Enables wsl configuration (nixos/wsl.nix).
networking.hostName = "elistraee";
system.stateVersion = "25.05";
programs.gnupg.agent.pinentryPackage = pkgs.pinentry-tty;
}