task | add support for colmena
This commit is contained in:
parent
7f8f785f9f
commit
fa6e63ace6
7 changed files with 30 additions and 18 deletions
34
flake.nix
34
flake.nix
|
|
@ -22,6 +22,7 @@
|
|||
home-manager,
|
||||
stylix,
|
||||
catppuccin,
|
||||
colmena,
|
||||
...
|
||||
}: let
|
||||
inherit (self) outputs;
|
||||
|
|
@ -40,15 +41,21 @@
|
|||
);
|
||||
in {
|
||||
inherit lib;
|
||||
# nixosModules = import ./modules/nixos;
|
||||
# homeManagerModules = import ./modules/home-manager;
|
||||
# templates = import ./templates;
|
||||
colmena = {
|
||||
meta = {
|
||||
nixpkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
};
|
||||
specialArgs = {
|
||||
inherit inputs outputs;
|
||||
};
|
||||
};
|
||||
eve = import ./hosts/eve;
|
||||
fred = import ./hosts/fred;
|
||||
loki = import ./hosts/loki;
|
||||
smaug = import ./hosts/smaug;
|
||||
};
|
||||
|
||||
# overlays = import ./overlays { inherit inputs outputs; };
|
||||
|
||||
# packages = forEachSystem (pkgs: import ./pkgs { inherit pkgs; });
|
||||
# devShells = forEachSystem (pkgs: import ./shell.nix { inherit pkgs; });
|
||||
# formatter = forEachSystem (pkgs: pkgs.nixpkgs-fmt);
|
||||
|
||||
nixosConfigurations = {
|
||||
# clients
|
||||
|
|
@ -71,16 +78,7 @@
|
|||
};
|
||||
};
|
||||
loki = lib.nixosSystem {
|
||||
modules = [
|
||||
# {
|
||||
# nix.settings = {
|
||||
# substituters = ["https://cosmic.cachix.org/"];
|
||||
# trusted-public-keys = ["cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE="];
|
||||
# };
|
||||
# }
|
||||
# nixos-cosmic.nixosModules.default
|
||||
./hosts/loki
|
||||
];
|
||||
modules = [ ./hosts/loki ];
|
||||
specialArgs = {
|
||||
inherit inputs outputs;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -19,4 +19,7 @@
|
|||
../../home/work
|
||||
];
|
||||
networking.hostName = "eve";
|
||||
deployment = {
|
||||
tags = [ "workstation" ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,4 +15,7 @@
|
|||
./podman.nix
|
||||
];
|
||||
networking.hostName = "fred";
|
||||
deployment = {
|
||||
tags = [ "server" ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,4 +20,7 @@
|
|||
../../home/work
|
||||
];
|
||||
networking.hostName = "loki";
|
||||
deployment = {
|
||||
tags = [ "workstation" ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -177,6 +177,7 @@ in {
|
|||
aspellDicts.en
|
||||
base16-schemes
|
||||
bash-completion
|
||||
colmena
|
||||
nix-bash-completions
|
||||
btop
|
||||
git-crypt
|
||||
|
|
|
|||
|
|
@ -18,4 +18,7 @@
|
|||
../../home/work
|
||||
];
|
||||
networking.hostName = "smaug";
|
||||
deployment = {
|
||||
tags = [ "workstation" ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -278,6 +278,7 @@ in {
|
|||
bash-completion
|
||||
brightnessctl
|
||||
btop
|
||||
colmena
|
||||
espeak-classic
|
||||
fwup
|
||||
fwupd
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue