The same with folders for users
This commit is contained in:
parent
0c7addbe0c
commit
fe7422b43d
4 changed files with 20 additions and 7 deletions
8
users/common/default.nix
Normal file
8
users/common/default.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./home.nix
|
||||
./programs.nix
|
||||
];
|
||||
}
|
||||
9
users/desktops/common/default.nix
Normal file
9
users/desktops/common/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./home.nix
|
||||
./programs.nix
|
||||
./services.nix
|
||||
];
|
||||
}
|
||||
|
|
@ -3,11 +3,8 @@
|
|||
{
|
||||
imports = [
|
||||
# Host-common imports
|
||||
../common/programs.nix
|
||||
../common/home.nix
|
||||
../common
|
||||
# Desktop-common imports
|
||||
./common/programs.nix
|
||||
./common/services.nix
|
||||
./common/home.nix
|
||||
./common
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
{
|
||||
imports = [
|
||||
# Host-common imports
|
||||
../common/programs.nix
|
||||
../common/home.nix
|
||||
../common
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue