diff --git a/hosts/randolph/configuration.nix b/hosts/randolph/configuration.nix index 7b331d8..4650d6e 100644 --- a/hosts/randolph/configuration.nix +++ b/hosts/randolph/configuration.nix @@ -17,6 +17,7 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelParams = [ "amdgpu.sg_display=0" ]; diff --git a/hosts/randolph/home.nix b/hosts/randolph/home.nix index 7b88b46..1444edf 100644 --- a/hosts/randolph/home.nix +++ b/hosts/randolph/home.nix @@ -1,6 +1,9 @@ { pkgs, ... }: rec { + imports = [ + ../../snippets/common_home.nix + ]; home.stateVersion = "23.11"; # Configure default applications as per /snippets/defaults.nix diff --git a/snippets/sway.nix b/snippets/sway.nix index 15137ba..4a78e93 100644 --- a/snippets/sway.nix +++ b/snippets/sway.nix @@ -143,6 +143,6 @@ in { home.packages = with pkgs; [ swaybg bemenu j4-dmenu-desktop swaysome ] ++ - [ brightnessctl grim slurp wl-clipboard wdisplays ] + [ brightnessctl grim slurp wl-clipboard wdisplays ] ++ []; }