mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
18 lines
278 B
Nix
18 lines
278 B
Nix
|
|
{
|
||
|
|
config = {
|
||
|
|
fireproof = {
|
||
|
|
hostname = "homelab";
|
||
|
|
username = "nickolaj";
|
||
|
|
dev.enable = true;
|
||
|
|
homelab.enable = true;
|
||
|
|
};
|
||
|
|
facter.reportPath = ./facter.json;
|
||
|
|
};
|
||
|
|
|
||
|
|
imports = [
|
||
|
|
./configuration.nix
|
||
|
|
./disks.nix
|
||
|
|
./networking.nix
|
||
|
|
];
|
||
|
|
}
|