summaryrefslogtreecommitdiffstats
path: root/profiles/server.nix
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2021-04-18 16:58:23 +0200
committerMinijackson <minijackson@riseup.net>2021-04-18 16:58:23 +0200
commit8ffe5ce23fa1548304a3fa25f2bd0e89837f5a0b (patch)
treecd0de6a4642b76b42002dae5291c307d30727bc6 /profiles/server.nix
parent46ac3d5464712d6b0e0bee4ac62543abcbf2db2c (diff)
downloadnixos-config-reborn-8ffe5ce23fa1548304a3fa25f2bd0e89837f5a0b.tar.gz
nixos-config-reborn-8ffe5ce23fa1548304a3fa25f2bd0e89837f5a0b.zip
revamp with nix flakes + desktop config
Diffstat (limited to 'profiles/server.nix')
-rw-r--r--profiles/server.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/profiles/server.nix b/profiles/server.nix
index 3084d26..ec4b1c6 100644
--- a/profiles/server.nix
+++ b/profiles/server.nix
@@ -1,9 +1,13 @@
1inputs:
2
1{ modulesPath, ... }: 3{ modulesPath, ... }:
2 4
3{ 5{
4 imports = [ 6 imports = [
5 (modulesPath + "/profiles/headless.nix") 7 (modulesPath + "/profiles/headless.nix")
6 (modulesPath + "/profiles/hardened.nix") 8 (modulesPath + "/profiles/hardened.nix")
9
10 inputs.self.nixosModules.usecases.server.default
7 ]; 11 ];
8 12
9} 13}