feat (hosts/elistraee): add nixos-wsl config

This commit is contained in:
Henri Saudubray 2026-02-04 09:06:43 +00:00
parent d1c0846cf8
commit 7955b8220f
Signed by: hms
GPG key ID: 7065F57ED8856128
12 changed files with 243 additions and 143 deletions

View file

@ -0,0 +1,11 @@
{ 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;
}