This commit is contained in:
2026-01-02 20:43:09 +01:00
commit 96a1f8a395
124 changed files with 2833 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{ pkgs, inputs, username, ... }: {
users.users.${username} = {
isNormalUser = true;
shell = pkgs.fish;
extraGroups = [ "networkmanager" "wheel" "libvirtd" "video" ];
};
programs.fish.enable = true;
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
backupFileExtension = "backup";
extraSpecialArgs = { inherit inputs username; };
users.${username} = import ../home/home.nix;
};
}