This commit is contained in:
Chris Cochrun 2022-06-17 09:47:01 -05:00
parent 270b92d0c2
commit d1bbf5c3c3
3 changed files with 21 additions and 10 deletions

View file

@ -350,6 +350,7 @@ qt5.qtx11extras
libsForQt5.kirigami2
libsForQt5.ki18n
libsForQt5.kcoreaddons
sqlite
fennel
#+end_src
@ -652,14 +653,18 @@ Kaladin is my desktop machine. A powerhouse for the most part with a recent i7 a
<<experimental-features>>
# Use the systemd-boot EFI boot loader.
boot.kernelPackages = pkgs.linuxPackages_zen;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot = {
kernelPackages = pkgs.linuxPackages_zen;
kernelParams = [ "mem_sleep_default=deep" ];
initrd.kernelModules = [ "amdgpu" ];
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
nixpkgs.config.allowUnfree = true;
boot.kernelParams = [ "mem_sleep_default=deep" ];
networking.hostName = "kaladin"; # Define your hostname.
networking.networkmanager.enable = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.

View file

@ -11,14 +11,18 @@
};
# Use the systemd-boot EFI boot loader.
boot.kernelPackages = pkgs.linuxPackages_zen;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot = {
kernelPackages = pkgs.linuxPackages_zen;
kernelParams = [ "mem_sleep_default=deep" ];
initrd.kernelModules = [ "amdgpu" ];
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
nixpkgs.config.allowUnfree = true;
boot.kernelParams = [ "mem_sleep_default=deep" ];
networking.hostName = "kaladin"; # Define your hostname.
networking.networkmanager.enable = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
@ -256,6 +260,7 @@
libsForQt5.kirigami2
libsForQt5.ki18n
libsForQt5.kcoreaddons
sqlite
fennel
(libsForQt5.callPackage ../../LightlyShaders {})
];

View file

@ -282,6 +282,7 @@
libsForQt5.kirigami2
libsForQt5.ki18n
libsForQt5.kcoreaddons
sqlite
fennel
(libsForQt5.callPackage ../../LightlyShaders {})
];