mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
23 lines
520 B
Nix
23 lines
520 B
Nix
{lib, ...}: {
|
|
config = {
|
|
fireproof = {
|
|
hostname = "work";
|
|
username = "nickolaj";
|
|
desktop.enable = true;
|
|
work.enable = true;
|
|
dev.enable = true;
|
|
};
|
|
facter.reportPath = ./facter.json;
|
|
|
|
fireproof.home-manager.programs.firefox.profiles.default.settings."browser.startup.homepage" = lib.mkForce "https://glance.nickolaj.com/work";
|
|
};
|
|
|
|
imports = [
|
|
./bluetooth.nix
|
|
./disk-configuration.nix
|
|
./monitors.nix
|
|
./networking.nix
|
|
./nvidia.nix
|
|
./ssh.nix
|
|
];
|
|
}
|