23 lines
397 B
Nix
23 lines
397 B
Nix
{ config, inputs, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../profiles
|
|
];
|
|
|
|
activeProfiles = ["base" "nvidia" "mediaServer"];
|
|
|
|
systemModules.user = {
|
|
ooks.enable = true;
|
|
shell.fish.enable = true;
|
|
};
|
|
|
|
networking = {
|
|
hostName = "ooksdesk";
|
|
# useDHCP = true;
|
|
};
|
|
boot = {
|
|
kernelPackages = pkgs.linuxKernel.packages.linux_zen;
|
|
};
|
|
}
|