server with fish?

This commit is contained in:
Till 2024-12-05 23:43:05 +01:00
parent 66c8d3ee0c
commit 047e005308
5 changed files with 102 additions and 114 deletions

View file

@ -44,20 +44,6 @@
];
};
ernst = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
{
networking.hostName = "ernst";
}
./system
./system/hardware-ernst.nix
./system/desktop.nix
./system/plasma.nix
./system/laura.nix
];
};
romulus = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
@ -100,6 +86,13 @@
];
};
"till@romulus" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux.extend inputs.nur.overlay;
extraSpecialArgs = { inherit inputs; };
modules = [
./home/slim-desktop.nix
];
};
"till@arielle" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux.extend inputs.nur.overlay;
extraSpecialArgs = { inherit inputs; };
modules = [
@ -113,13 +106,6 @@
./home/alt.nix
];
};
"lisa@ernst" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux.extend inputs.nur.overlay;
extraSpecialArgs = { inherit inputs; };
modules = [
./home/lisa.nix
];
};
};
};
}