first working setup

This commit is contained in:
Kabbone 2022-09-18 14:33:58 +02:00
parent 4ee84173c7
commit 07758171a3
2 changed files with 13 additions and 10 deletions

View File

@ -70,7 +70,7 @@
#doom emacs # Text Editor #doom emacs # Text Editor
#flameshot # Screenshot #flameshot # Screenshot
#libnotify # Dep for Dunst #libnotify # Dep for Dunst
neovim # Text Editor #neovim # Text Editor
#rofi # Menu #rofi # Menu
#udiskie # Auto Mounting #udiskie # Auto Mounting
#vim # Text Editor #vim # Text Editor

View File

@ -17,7 +17,7 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "rtsx_usb_sdmmc" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
@ -53,13 +53,13 @@
# prefixLength = 24; # prefixLength = 24;
#} ]; #} ];
}; };
wlo1 = { # wlo1 = {
useDHCP = true; # useDHCP = true;
#ipv4.addresses = [ { # #ipv4.addresses = [ {
# address = "192.168.0.51"; # # address = "192.168.0.51";
# prefixLength = 24; # # prefixLength = 24;
#} ]; # #} ];
}; # };
}; };
#defaultGateway = "192.168.0.1"; #defaultGateway = "192.168.0.1";
#nameservers = [ "192.168.0.4" ]; #nameservers = [ "192.168.0.4" ];
@ -70,4 +70,7 @@
#}; #};
}; };
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
# high-resolution display
hardware.video.hidpi.enable = lib.mkDefault true;
}