Fix Legion importing desktop programs when it shouldn't be

This commit is contained in:
Evie Litherland-Smith 2024-07-03 07:37:09 +01:00
parent f8782068d2
commit a1d6a789e7
3 changed files with 7 additions and 9 deletions

View file

@ -116,8 +116,13 @@
./home/default.nix
./home/${hostName}.nix
];
home = {inherit username;};
home = {
inherit username;
homeDirectory = "/home/${username}";
stateVersion = "23.05";
};
programs.home-manager.enable = true;
nixpkgs.config.allowUnfree = true;
};
};
})

View file

@ -1 +1 @@
{...}: {imports = [./default.nix];}
{...}: {imports = [./shell.nix ./emacs.nix];}

View file

@ -15,11 +15,4 @@
# Additional Scripts
./scripts/default.nix
];
programs.home-manager.enable = true;
nixpkgs.config.allowUnfree = true;
home = {
username = lib.mkDefault "pixelifytica";
homeDirectory = "/home/${config.home.username}";
stateVersion = "23.05";
};
}