From 033588cb193e46894490c2d19028bf8598ddc78d Mon Sep 17 00:00:00 2001 From: ooks-io Date: Fri, 22 Nov 2024 11:13:22 +1100 Subject: [PATCH] ooksmedia: hardware config --- hosts/ooksmedia/default.nix | 1 + hosts/ooksmedia/hardware.nix | 17 +++++++++++++++++ modules/home/console/tools/default.nix | 1 - modules/home/workstation/tools/default.nix | 1 + .../tools/virt-manager.nix} | 0 5 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 hosts/ooksmedia/hardware.nix rename modules/home/{console/tools/virtualization.nix => workstation/tools/virt-manager.nix} (100%) diff --git a/hosts/ooksmedia/default.nix b/hosts/ooksmedia/default.nix index 2af78cf..e1457bd 100644 --- a/hosts/ooksmedia/default.nix +++ b/hosts/ooksmedia/default.nix @@ -22,6 +22,7 @@ multiplexer = "zellij"; }; }; + boot.kernelPackages = pkgs.linuxPackages_xanmod_latest; system.stateVersion = lib.mkDefault "24.11"; diff --git a/hosts/ooksmedia/hardware.nix b/hosts/ooksmedia/hardware.nix new file mode 100644 index 0000000..bc4629e --- /dev/null +++ b/hosts/ooksmedia/hardware.nix @@ -0,0 +1,17 @@ +{ + ooknet.hardware = { + cpu.type = "intel"; + gpu.type = "nvidia"; + features = ["ssd" "audio" "video" "bluetooth"]; + monitors = [ + { + name = "DP-3"; + primary = true; + width = 1920; + height = 1080; + refreshRate = 180; + workspace = "1"; + } + ]; + }; +} diff --git a/modules/home/console/tools/default.nix b/modules/home/console/tools/default.nix index c29bf86..45a4b5a 100644 --- a/modules/home/console/tools/default.nix +++ b/modules/home/console/tools/default.nix @@ -1,6 +1,5 @@ { imports = [ - ./virtualization.nix ./bat.nix ./networking.nix ./btop.nix diff --git a/modules/home/workstation/tools/default.nix b/modules/home/workstation/tools/default.nix index bdf7eb3..7a1545e 100644 --- a/modules/home/workstation/tools/default.nix +++ b/modules/home/workstation/tools/default.nix @@ -1,6 +1,7 @@ { imports = [ ./ookpower.nix + ./virt-manager.nix ./1password.nix ./ookvolume.nix ./kdeconnect.nix diff --git a/modules/home/console/tools/virtualization.nix b/modules/home/workstation/tools/virt-manager.nix similarity index 100% rename from modules/home/console/tools/virtualization.nix rename to modules/home/workstation/tools/virt-manager.nix