This commit is contained in:
alex 2023-06-17 16:46:54 -04:00
parent ea762a3958
commit b47afee3cf
4 changed files with 3 additions and 3 deletions

View File

@ -11,6 +11,7 @@
discord discord
firefox firefox
git git
gnucash
keepassxc keepassxc
lutris lutris
mpv mpv

View File

@ -11,11 +11,12 @@
nixosConfigurations.nixos76 = nixpkgs.lib.nixosSystem { nixosConfigurations.nixos76 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./configuration.nix ./system/configuration.nix
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.alex = import ./home.nix;
# Optionally, use home-manager.extraSpecialArgs to pass # Optionally, use home-manager.extraSpecialArgs to pass
# arguments to home.nix # arguments to home.nix
} }

View File

@ -109,8 +109,6 @@
extraGroups = [ "wheel" "networkmanager" ]; # Enable sudo for the user. extraGroups = [ "wheel" "networkmanager" ]; # Enable sudo for the user.
}; };
home-manager.users.alex = import ./home.nix;
fileSystems."/home/alex/Documents" = { fileSystems."/home/alex/Documents" = {
device = "/media/external/Documents"; device = "/media/external/Documents";
options = [ "bind" ]; options = [ "bind" ];