my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

systems: remove hephaestus

isabel 9179a96f 453c1cbf

+2 -34
-2
modules/flake/default.nix
··· 63 63 64 64 athena = { }; 65 65 66 - hephaestus = { }; 67 - 68 66 isis = { }; 69 67 70 68 lilith = {
+1 -3
modules/nixos/services/piper.nix
··· 8 8 inherit (lib) mkIf; 9 9 inherit (self.lib) mkServiceOption mkSecret; 10 10 11 - rdomain = config.networking.domain; 12 - 13 11 cfg = config.garden.services.piper; 14 12 in 15 13 { 16 14 options.garden.services.piper = mkServiceOption "piper" { 17 15 port = 3015; 18 - domain = "piper.${rdomain}"; 16 + domain = "piper.kittysay.xyz"; 19 17 }; 20 18 21 19 config = mkIf cfg.enable {
-19
systems/hephaestus/default.nix
··· 1 - { 2 - imports = [ ./hardware.nix ]; 3 - 4 - garden = { 5 - profiles = { 6 - headless.enable = true; 7 - server.enable = true; 8 - upcloud.enable = true; 9 - }; 10 - 11 - services = { 12 - nginx = { 13 - enable = true; 14 - domain = "kittysay.xyz"; 15 - }; 16 - piper.enable = true; 17 - }; 18 - }; 19 - }
-10
systems/hephaestus/hardware.nix
··· 1 - { 2 - fileSystems."/" = { 3 - device = "/dev/disk/by-uuid/4d503c5f-c51a-4eca-993c-5beb9b85b963"; 4 - fsType = "ext4"; 5 - }; 6 - 7 - swapDevices = [ 8 - { device = "/dev/disk/by-uuid/9455e246-4f8f-42cb-beb8-d1a071a1b5e0"; } 9 - ]; 10 - }
+1
systems/skadi/default.nix
··· 24 24 nginx.enable = true; 25 25 uptime-kuma.enable = true; 26 26 pds.enable = true; 27 + piper.enable = true; 27 28 }; 28 29 }; 29 30 }