Initial commit

This commit is contained in:
demenik
2025-12-01 18:24:34 +01:00
commit fc68fa5ce9
142 changed files with 6273 additions and 0 deletions

19
nixos/headless.nix Normal file
View File

@@ -0,0 +1,19 @@
{
pkgs,
stateVersion,
user,
...
}: {
imports = [
./global
./users/demenik.nix
./optional/docker.nix
./optional/direnv.nix
];
programs.zsh.enable = true;
users.users.${user}.shell = pkgs.zsh;
system = {inherit stateVersion;};
}