feat(ooksmedia): add ooksmedia host
This commit is contained in:
parent
81cee8da59
commit
e78f3f0378
4 changed files with 120 additions and 0 deletions
28
system/hosts/ooksmedia/default.nix
Normal file
28
system/hosts/ooksmedia/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue