From bd5a6c881ad7122417bbfd3f5c9fbe2188f8e0f0 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Mon, 28 Oct 2024 22:50:02 -0500 Subject: [PATCH] task | add ace, then comment out ace and pocket2 --- flake.nix | 2 ++ hosts/ace/colmena.nix | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 hosts/ace/colmena.nix diff --git a/flake.nix b/flake.nix index ebc306a..27d623d 100644 --- a/flake.nix +++ b/flake.nix @@ -51,9 +51,11 @@ inherit inputs outputs; }; }; + # ace = import ./hosts/ace/colmena.nix; eve = import ./hosts/eve/colmena.nix; fred = import ./hosts/fred/colmena.nix; loki = import ./hosts/loki/colmena.nix; + # pocket2 = import ./hosts/pocket2/colmena.nix; smaug = import ./hosts/smaug/colmena.nix; w1 = import ./hosts/w1/colmena.nix; # w2 = import ./hosts/w2/colmena.nix; diff --git a/hosts/ace/colmena.nix b/hosts/ace/colmena.nix new file mode 100644 index 0000000..8af2647 --- /dev/null +++ b/hosts/ace/colmena.nix @@ -0,0 +1,15 @@ +{ + inputs, + outputs, + lib, + config, + pkgs, + ... +}: { + imports = [ + ./default.nix + ]; + deployment = { + tags = ["workstation" "intel"]; + }; +}