diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-04 22:28:14 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:45 -0700 |
| commit | 175a1398722bed66ca89d3cc7532353781b0791a (patch) | |
| tree | c4da9e5c0ad5e28eff75ece98c39001a81bb3a14 | |
| parent | 1f5c44989e3f4432045f6e4178238db42e0f765e (diff) | |
migration: remove old flake configs
| -rw-r--r-- | flake.nix | 58 |
1 files changed, 18 insertions, 40 deletions
@@ -18,46 +18,24 @@ nix-minecraft.url = "github:CartConnoisseur/nix-minecraft"; }; - outputs = inputs: - inputs.snowfall-lib.mkFlake { - inherit inputs; - src = ./.; - - snowfall = { - root = ./snowfall; - namespace = "cxl"; - - meta = { - name = "cxl"; - title = "cxl flake"; - }; - }; + outputs = inputs: inputs.snowfall-lib.mkFlake { + inherit inputs; + src = ./.; + + snowfall = { + root = ./snowfall; + namespace = "cxl"; - systems.modules.nixos = with inputs; [ - inputs.home-manager.nixosModules.default - impermanence.nixosModules.impermanence - nix-minecraft.nixosModules.minecraft-servers - ]; + meta = { + name = "cxl"; + title = "cxl flake"; + }; }; - # nixosConfigurations = { - # c-pc = nixpkgs.lib.nixosSystem { - # specialArgs = { inherit inputs; }; - # modules = [ - # ./hosts/c-pc/configuration.nix - # inputs.home-manager.nixosModules.default - # inputs.impermanence.nixosModules.impermanence - # inputs.nix-minecraft.nixosModules.minecraft-servers - # (import ./overlays) - # ]; - # }; - - # copenhagen = nixpkgs.lib.nixosSystem { - # specialArgs = { inherit inputs; }; - # modules = [ - # ./hosts/copenhagen/configuration.nix - # inputs.home-manager.nixosModules.default - # inputs.impermanence.nixosModules.impermanence - # inputs.nix-minecraft.nixosModules.minecraft-servers - # ]; - # }; + + systems.modules.nixos = with inputs; [ + inputs.home-manager.nixosModules.default + impermanence.nixosModules.impermanence + nix-minecraft.nixosModules.minecraft-servers + ]; + }; } |