Merge remote-tracking branch 'origin/master'

This commit is contained in:
Chris Cochrun 2022-06-23 12:19:09 -05:00
commit a7476a1222
5 changed files with 37 additions and 14 deletions

View file

@ -326,7 +326,7 @@ powertop
quickemu
OVMFFull
element-desktop-wayland
# rustdesk
scrcpy
# hyprland
#+end_src
@ -353,6 +353,8 @@ qt5.qtx11extras
libsForQt5.kirigami2
libsForQt5.ki18n
libsForQt5.kcoreaddons
plasma5Packages.kirigami2
sqlite
fennel
#+end_src
@ -655,14 +657,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.
@ -677,6 +683,7 @@ Kaladin is my desktop machine. A powerhouse for the most part with a recent i7 a
networking.interfaces.enp0s31f6.useDHCP = true;
networking.interfaces.wlp7s0.useDHCP = true;
<<podman>>
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";