nixos/hosts/laptop/default.nix
2025-12-27 00:32:56 +01:00

20 lines
359 B
Nix

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