From a3ef9fa59ed16e828efb69d40097aadd04cd0c16 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Thu, 19 Feb 2026 02:44:23 +0000 Subject: [PATCH] changes to hardware config --- home/packages/.linux.nix.swp | Bin 0 -> 12288 bytes home/packages/linux.nix | 11 ------ .../thancred/hardware-configuration.nix | 33 ++++++++++++++++-- 3 files changed, 31 insertions(+), 13 deletions(-) create mode 100644 home/packages/.linux.nix.swp diff --git a/home/packages/.linux.nix.swp b/home/packages/.linux.nix.swp new file mode 100644 index 0000000000000000000000000000000000000000..2b07d50ee68f98db774906efa25597b4ed5684c7 GIT binary patch literal 12288 zcmeI&Jx|*}7zgm9I~0{K@X#)mh%dY>w5aM@Bwhvx3u18Wi*vGbwtQzd5~3Ygkk~VJ z=QFgdd;wM@VCg652k3KdQdlZLosj+~{e3UKJIB8*$#oa^);H;$ToPPng(&(XeKsY; z&9M+h4|D6sA1IHV_obQG=4%k;rl*sjUT*jEfod0Fl!l42?M$0$D0#*MkHl>VK;S6? zmFoqo)18&&rA5E&&FguZd)0Z$4wwr82tWV=5P$##AOHafJaYk8Oo^}j4ll;<@p4@A zPXJAs)Z;EH2tWV=5P$##AOHafKmY;|fB*!Zp+Fc5aXKT!HOK$|Kl%QD#f@{$H_nK2 z!qJ>v&L_?)=PhTJ^NZL1=onXqj7wX&(pi>BRG&Z#oi*6$rTzul* zKA|4eJnE0f%gOP0`aqwx>r;^?c8wSL%?9auuNjcm#mdxD+YNt+o({#Ke_E@#+4}pa PkL1cqwMa@yNAJaN3jvYp literal 0 HcmV?d00001 diff --git a/home/packages/linux.nix b/home/packages/linux.nix index 79436a2..df40f8f 100644 --- a/home/packages/linux.nix +++ b/home/packages/linux.nix @@ -3,16 +3,5 @@ lib.mkIf pkgs.stdenv.isLinux { home.packages = with pkgs; [ imv xdg-utils - ] ++ lib.optionals isNixOS [ - betterdiscordctl - vesktop - xfce.thunar - pavucontrol - godot - aseprite - zathura - gpu-screen-recorder - gpu-screen-recorder-gtk - inetutils ]; } diff --git a/modules/machine/thancred/hardware-configuration.nix b/modules/machine/thancred/hardware-configuration.nix index c81f1da..382377f 100644 --- a/modules/machine/thancred/hardware-configuration.nix +++ b/modules/machine/thancred/hardware-configuration.nix @@ -1,3 +1,32 @@ -{ ... }: { - # TODO: needs to filled out later +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/profiles/qemu-guest.nix") + ]; + + boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "sr_mod" "virtio_blk" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/e2e621c1-0090-472a-99d9-61c6a87bd068"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/663E-15C0"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/60104b1a-4285-4dd1-be5e-3c3dee24515a"; } + ]; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; }