mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
22 lines
360 B
Nix
22 lines
360 B
Nix
|
|
{
|
||
|
|
config = {
|
||
|
|
fireproof = {
|
||
|
|
hostname = "work";
|
||
|
|
username = "nickolaj";
|
||
|
|
desktop.enable = true;
|
||
|
|
work.enable = true;
|
||
|
|
dev.enable = true;
|
||
|
|
};
|
||
|
|
facter.reportPath = ./facter.json;
|
||
|
|
};
|
||
|
|
|
||
|
|
imports = [
|
||
|
|
./bluetooth.nix
|
||
|
|
./disk-configuration.nix
|
||
|
|
./monitors.nix
|
||
|
|
./networking.nix
|
||
|
|
./nvidia.nix
|
||
|
|
./ssh.nix
|
||
|
|
];
|
||
|
|
}
|