config-perso/hive.nix

19 lines
395 B
Nix
Raw Normal View History

2024-03-12 17:26:16 +01:00
{
meta.nixpkgs = <nixpkgs>;
defaults = { pkgs, ... }: {
imports = [
(import <home-manager/nixos>)
./modules
];
boot.tmp.useTmpfs = true;
};
kat-probook = { name, nodes, ... }: {
imports = [
./machines/kat-probook/configuration.nix
./users/home_manager.nix
];
deployment.allowLocalDeployment = true;
networking.hostName = name;
};
}