ooknet/system/hosts/ooksdesk/default.nix

33 lines
530 B
Nix

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