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