feat: rework to modular
This commit is contained in:
8
profiles/backend.nix
Normal file
8
profiles/backend.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
let
|
||||
mkProfile = import ../lib/mkProfile.nix;
|
||||
in
|
||||
mkProfile {
|
||||
modules = [
|
||||
../modules/roles/backend.nix
|
||||
];
|
||||
}
|
||||
8
profiles/frontend.nix
Normal file
8
profiles/frontend.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
let
|
||||
mkProfile = import ../lib/mkProfile.nix;
|
||||
in
|
||||
mkProfile {
|
||||
modules = [
|
||||
../modules/roles/frontend.nix
|
||||
];
|
||||
}
|
||||
10
profiles/minimal.nix
Normal file
10
profiles/minimal.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
let
|
||||
mkProfile = import ../lib/mkProfile.nix;
|
||||
in
|
||||
mkProfile {
|
||||
modules = [
|
||||
../modules/roles/minimal.nix
|
||||
../modules/services/ssh.nix
|
||||
../modules/optional/devtools.nix
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user