hyprland changes

This commit is contained in:
cnst
2024-07-27 18:33:03 +02:00
parent 83731d4670
commit 7b26c3e235
8 changed files with 533 additions and 38 deletions

View File

@@ -63,7 +63,6 @@
unrar
unzip
wget
wlroots
xdg-user-dirs
xdg-utils

View File

@@ -62,7 +62,6 @@
unrar
unzip
wget
wlroots
xdg-user-dirs
xdg-utils
zed-editor

View File

@@ -13,16 +13,16 @@
boot = {
initrd = {
availableKernelModules = [
"nvme"
"xhci_pci"
"ahci"
"nvme"
"usbhid"
"usb_storage"
"sd_mod"
];
kernelModules = ["amdgpu"];
kernelModules = [];
};
kernelModules = ["kvm-amd"];
kernelModules = ["kvm-intel"];
kernelPackages = pkgs.linuxPackages_zen;
consoleLogLevel = 3;
kernelParams = [
@@ -33,19 +33,16 @@
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/de372c64-89a2-4bbe-ad57-926cdd98e97d";
device = "/dev/disk/by-uuid/87381342-28b5-4cbb-9e18-5baab7d68b27";
fsType = "ext4";
};
boot.initrd.luks.devices."luks-60ba815c-481b-4932-94d2-b8d29465d3eb".device = "/dev/disk/by-uuid/60ba815c-481b-4932-94d2-b8d29465d3eb";
boot.initrd.luks.devices."luks-81dcb5e4-7adb-44ee-99df-69e366f8b735".device = "/dev/disk/by-uuid/81dcb5e4-7adb-44ee-99df-69e366f8b735";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/0954-2370";
device = "/dev/disk/by-uuid/CA19-5F2A";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
options = ["fmask=0022" "dmask=0022"];
};
swapDevices = [];
@@ -53,12 +50,10 @@
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# 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.interfaces.enp6s0.useDHCP = lib.mkDefault true;
# networking.interfaces.enp7s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true;
# networking.interfaces.enp4s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}

View File

@@ -61,7 +61,6 @@
unrar
unzip
wget
wlroots
xdg-user-dirs
xdg-utils