diff options
author | Linnnus <[email protected]> | 2023-10-01 22:08:14 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-10-01 22:08:14 +0200 |
commit | df53cd97a22ac201df6e19ce1a2083146bd900ce (patch) | |
tree | bc038f80d0eb7e4410e6c252d9ddbc9cb746d00c /hosts/ahmed/configuration.nix | |
parent | 33fe1f534fff335c19d510b21cbbc602fc704684 (diff) |
Remove 'my' prefix
Diffstat (limited to 'hosts/ahmed/configuration.nix')
-rw-r--r-- | hosts/ahmed/configuration.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hosts/ahmed/configuration.nix b/hosts/ahmed/configuration.nix index 402c3ab..2fb6d2e 100644 --- a/hosts/ahmed/configuration.nix +++ b/hosts/ahmed/configuration.nix @@ -39,7 +39,7 @@ }; # Set up Minecraft server. - my.services.on-demand-minecraft = { + services.on-demand-minecraft = { enable = true; eula = true; package = pkgs.papermc; @@ -47,15 +47,15 @@ }; # Set up dukse server. Det er satme hårdt at være overduksepåmindelsesansvarlig. - my.services.duksebot.enable = true; + services.duksebot.enable = true; # Virtual hosts. services.nginx.enable = true; - my.modules."linus.onl" = { + modules."linus.onl" = { enable = true; useACME = true; }; - my.modules."notifications.linus.onl" = { + modules."notifications.linus.onl" = { enable = true; useACME = true; }; @@ -78,10 +78,10 @@ networking.firewall.allowedTCPPorts = [ 80 443 ]; # We are running behind CF proxy. - my.modules.cloudflare-proxy.enable = true; + modules.cloudflare-proxy.enable = true; # Use as main driver temporarily. - # my.modules.graphics.enable = true; + # modules.graphics.enable = true; disable-screen = { enable = true; |