Add pearl host

This commit is contained in:
Daniel Lundin 2024-09-03 17:13:48 +02:00
parent 318c9c9cc3
commit d8cd9df7d3
Signed by: dln
SSH key fingerprint: SHA256:Vhqxf7VIXwfS0r2j6bJiJ5A+hjhzMODtihuHIybqf3s
6 changed files with 173 additions and 96 deletions

View file

@ -21,7 +21,6 @@
{
self,
nixpkgs,
colmena,
ghostty,
ghostty-hm,
home-manager,
@ -82,19 +81,21 @@
devShells = forEachSystem' (
{ system, pkgs, ... }:
{
default = pkgs.mkShell { packages = [ pkgs.colmena ]; };
default = pkgs.mkShell { packages = [ ]; };
}
);
homeConfigurations = {
"dln@dinky" = mkHome [ ./home/dln/dinky.nix ];
"dln@nemo" = mkHome [ ./home/dln/nemo.nix ];
"dln@pearl" = mkHome [ ./home/dln/pearl.nix ];
"lsjostro@nemo" = mkHome [ ./home/lsjostro/nemo.nix ];
};
nixosConfigurations = {
dinky = mkHost [ ./hosts/dinky ];
nemo = mkHost [ ./hosts/nemo ];
pearl = mkHost [ ./hosts/pearl ];
};
};
}