Updating from my desktop

This commit is contained in:
Tyler Kelley 2024-03-12 15:57:38 -05:00
parent 027459d629
commit 8e643956f0
3 changed files with 10 additions and 17 deletions

View File

@ -36,6 +36,7 @@ in with lib; {
"hyprland/window" = { "hyprland/window" = {
max-length = 25; max-length = 25;
separate-outputs = false; separate-outputs = false;
rewrite = { "" = " 🙈 No Windows? "; };
}; };
"memory" = { "memory" = {
interval = 5; interval = 5;

View File

@ -8,27 +8,20 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "nvme" "usbhid" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/8f47c564-523f-4eca-9644-69d2bed92f0a"; { device = "/dev/disk/by-uuid/b6d7783f-dd7c-493f-af02-923ca3394157";
fsType = "ext4"; fsType = "ext4";
}; };
boot.initrd.luks.devices."luks-4f3ec042-9a98-4e10-84b3-3e081b030d6e".device = "/dev/disk/by-uuid/4f3ec042-9a98-4e10-84b3-3e081b030d6e"; boot.initrd.luks.devices."luks-0e0fc3ab-a29c-4a80-997a-9803ab509da7".device = "/dev/disk/by-uuid/0e0fc3ab-a29c-4a80-997a-9803ab509da7";
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/cb501f9a-6814-477f-b8d5-1a8aaba243a9";
fsType = "ext4";
};
boot.initrd.luks.devices."luks-9b120c21-77b6-4291-bee0-185c5a1e3682".device = "/dev/disk/by-uuid/9b120c21-77b6-4291-bee0-185c5a1e3682";
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/3B15-2EB6"; { device = "/dev/disk/by-uuid/76A0-C7B3";
fsType = "vfat"; fsType = "vfat";
}; };
@ -39,8 +32,7 @@
# still possible to use this option, but it's recommended to use it in conjunction # still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp61s0.useDHCP = lib.mkDefault true; # networking.interfaces.enp7s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp62s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;

View File

@ -5,14 +5,14 @@
let let
# THINGS YOU NEED TO CHANGE # THINGS YOU NEED TO CHANGE
username = "zaney"; username = "zaney";
hostname = "hyprbook"; hostname = "hyprnix";
userHome = "/home/${username}"; userHome = "/home/${username}";
flakeDir = "${userHome}/zaneyos"; flakeDir = "${userHome}/zaneyos";
waybarStyle = "simplebar"; # simplebar, slickbar, or default waybarStyle = "simplebar"; # simplebar, slickbar, or default
in { in {
# User Variables # User Variables
username = "zaney"; username = "zaney";
hostname = "hyprbook"; hostname = "hyprnix";
gitUsername = "Tyler Kelley"; gitUsername = "Tyler Kelley";
gitEmail = "tylerzanekelley@gmail.com"; gitEmail = "tylerzanekelley@gmail.com";
theme = "atelier-cave"; theme = "atelier-cave";
@ -44,7 +44,7 @@ in {
# For Hybrid Systems intel-nvidia # For Hybrid Systems intel-nvidia
# Should Be Used As gpuType # Should Be Used As gpuType
cpuType = "intel"; cpuType = "intel";
gpuType = "intel-nvidia"; gpuType = "amd";
# Nvidia Hybrid Devices # Nvidia Hybrid Devices
# ONLY NEEDED FOR HYBRID # ONLY NEEDED FOR HYBRID