nixos/hosts/work/default.nix

24 lines
520 B
Nix
Raw Normal View History

2025-12-14 01:34:24 +01:00
{lib, ...}: {
2025-12-13 21:41:52 +01:00
config = {
fireproof = {
hostname = "work";
username = "nickolaj";
desktop.enable = true;
work.enable = true;
dev.enable = true;
};
facter.reportPath = ./facter.json;
2025-12-14 01:34:24 +01:00
fireproof.home-manager.programs.firefox.profiles.default.settings."browser.startup.homepage" = lib.mkForce "https://glance.nickolaj.com/work";
2025-12-13 21:41:52 +01:00
};
imports = [
./bluetooth.nix
./disk-configuration.nix
./monitors.nix
./networking.nix
./nvidia.nix
./ssh.nix
];
}