feat(ooksmedia): add ooksmedia host

This commit is contained in:
ooks-io 2024-04-12 14:50:00 +12:00
parent 81cee8da59
commit e78f3f0378
4 changed files with 120 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ config, inputs, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../profiles
];
activeProfiles = ["base" "mediaServer" "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;
};
}