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"]; + }; +}