From ee24a85358734d6c816cbb5bf3e2ceed137c44b4 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Thu, 10 Apr 2025 11:47:52 -0600 Subject: [PATCH] the nix app isn't quite that good, not worth it --- flake.nix | 1 - hosts/galaxy/configuration.nix | 38 ---------------------------------- hosts/galaxy/toggles.nix | 24 --------------------- 3 files changed, 63 deletions(-) delete mode 100644 hosts/galaxy/configuration.nix delete mode 100644 hosts/galaxy/toggles.nix diff --git a/flake.nix b/flake.nix index 2445e6a..01bd4af 100644 --- a/flake.nix +++ b/flake.nix @@ -82,7 +82,6 @@ { nixosConfigurations = { workstation = createConfig "workstation" inputs.nixpkgs; - galaxy = createConfig "galaxy" inputs.nixpkgs; miniserver = createConfig "miniserver" inputs.nixpkgs-small; server = createConfig "server" inputs.nixpkgs-small; }; diff --git a/hosts/galaxy/configuration.nix b/hosts/galaxy/configuration.nix deleted file mode 100644 index ca80de4..0000000 --- a/hosts/galaxy/configuration.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ ... }: -{ - imports = [ - ../../base.nix - ../../stylix.nix - ]; - my = import ./toggles.nix; - networking = { - hostName = "galaxy"; - }; - # nix = { - # settings = { - # cores = 3; - # max-jobs = 8; - # }; - # buildMachines = - # let - # buildMachine = hostName: maxJobs: speedFactor: { - # inherit hostName maxJobs speedFactor; - # system = "x86_64-linux"; - # sshUser = "nixremote"; - # supportedFeatures = [ - # "nixos-test" - # "benchmark" - # "big-parallel" - # "kvm" - # "gccarch-znver3" - # "gccarch-skylake" - # "gccarch-alderlake" - # ]; - # }; - # in - # [ - # (buildMachine "workstation" 16 40) - # (buildMachine "server" 16 17) - # ]; - # }; -} diff --git a/hosts/galaxy/toggles.nix b/hosts/galaxy/toggles.nix deleted file mode 100644 index f622c5d..0000000 --- a/hosts/galaxy/toggles.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ - emacs.enable = true; - apps.dictionaries.enable = true; - services = { - network.enable = true; - wireguard.enable = true; - }; - shell = { - tools.enable = true; - multimedia.enable = true; - }; - dev = { - nix.enable = true; - python.enable = true; - sh.enable = true; - }; - scripts = { - split-dir.enable = true; - download.enable = true; - stream-dl.enable = true; - ffmpreg.enable = true; - ffmpeg4discord.enable = true; - }; -}