nixos/hosts/laptop/default.nix
2025-12-13 21:41:52 +01:00

19 lines
328 B
Nix

{
config = {
fireproof = {
desktop.enable = true;
work.enable = true;
dev.enable = true;
hostname = "laptop";
username = "nickolaj";
};
facter.reportPath = ./facter.json;
};
imports = [
./configuration.nix
./disk-configuration.nix
./monitors.nix
./ssh.nix
];
}