Fix Legion importing desktop programs when it shouldn't be
This commit is contained in:
parent
f8782068d2
commit
a1d6a789e7
|
@ -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;
|
||||
};
|
||||
};
|
||||
})
|
||||
|
|
|
@ -1 +1 @@
|
|||
{...}: {imports = [./default.nix];}
|
||||
{...}: {imports = [./shell.nix ./emacs.nix];}
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue