ooknet/system/hosts/ooksmedia/default.nix

29 lines
478 B
Nix

{ config, inputs, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../profiles
./nixarr.nix
];
activeProfiles = ["base" "gaming"];
systemModules.user = {
ooks.enable = true;
shell.fish.enable = true;
};
systemModules.hardware = {
cpu.type = "intel";
gpu.type = "nvidia";
};
networking = {
hostName = "ooksmedia";
# useDHCP = true;
};
boot = {
kernelPackages = pkgs.linuxPackages_xanmod_latest;
};
}