diff options
| -rw-r--r-- | galaxious/configuration.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/galaxious/configuration.nix b/galaxious/configuration.nix index 9066c64..f2b38fd 100644 --- a/galaxious/configuration.nix +++ b/galaxious/configuration.nix @@ -1,7 +1,7 @@ { ... }: let sources = import ../npins; pkgs = import sources.nixpkgs {}; - modulesPath = "${nixpkgs}/nixos/modules"; + modulesPath = "${sources.nixpkgs}/nixos/modules"; in { boot = { initrd = { @@ -35,7 +35,12 @@ in { flake.source = sources.nixpkgs; hostPlatform = "x86_64-linux"; }; - services.openssh.enable = true; + services = { + cgit."git.galaxious.de" = { + enable = true; + }; + openssh.enable = true; + }; systemd.network = { enable = true; networks."40-wan" = { |
