mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
added server system modules
This commit is contained in:
parent
7bb2f954e7
commit
e8e49750f9
3 changed files with 7 additions and 2 deletions
|
|
@ -46,7 +46,7 @@
|
|||
modules = [
|
||||
./src/system/machines/server
|
||||
home-manager.nixosModules.home-manager
|
||||
(import ./src/system/machines/server/home.nix)
|
||||
(import ./src/system/machines/server/modules/home-manager)
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
|||
5
src/system/machines/server/modules/default.nix
Normal file
5
src/system/machines/server/modules/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./home
|
||||
];
|
||||
}
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.${config.user.name} = {
|
||||
imports = [ ../../../user ];
|
||||
imports = [ ../../../../../user ];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
programs.bash.shellAliases = {
|
||||
Loading…
Add table
Add a link
Reference in a new issue