mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-23 08:26:49 +01:00
26 lines
472 B
Nix
26 lines
472 B
Nix
{
|
|
config = {
|
|
fireproof = {
|
|
hostname = "minilab";
|
|
username = "nickolaj";
|
|
desktop = {
|
|
enable = true;
|
|
chromium.enable = false;
|
|
zed.enable = false;
|
|
};
|
|
dev = {
|
|
enable = true;
|
|
intellij.enable = false;
|
|
clickhouse.enable = false;
|
|
playwright.enable = false;
|
|
};
|
|
};
|
|
|
|
facter.reportPath = ./facter.json;
|
|
};
|
|
|
|
imports = [
|
|
./disk-configuration.nix
|
|
./monitors.nix
|
|
];
|
|
}
|