mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
19 lines
328 B
Nix
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
|
|
];
|
|
}
|