quickshell stuff, enable nix-ld and fix hyprland binds

This commit is contained in:
Charlie Root 2024-10-10 20:31:02 +02:00
commit a722352175
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
4 changed files with 18 additions and 13 deletions

View file

@ -1,23 +1,27 @@
{
config,
lib,
inputs',
pkgs,
lib,
...
}: let
inherit (inputs') quickshell;
inherit (lib.generators) toKeyValue;
inherit (config.meta.mainUser) username;
in {
home.packages = with pkgs; [
qt6.qtimageformats # amog
qt6.qt5compat # shader fx
quickshell.packages.default
pamtester # lockscreen
grim
imagemagick # screenshot
];
home-manager.users.${username} = {
home.packages = with pkgs; [
qt6.qtimageformats # amog
qt6.qt5compat # shader fx
quickshell.packages.default
pamtester # lockscreen
grim
imagemagick # screenshot
];
xdg.configFile."quickshell/manifest.conf".text = toKeyValue {} {
shell = "${./shell}";
lockscreen = "${./lockscreen}";
# xdg.configFile."quickshell/manifest.conf".text = toKeyValue {} {
# shell = "${./shell}";
# # lockscreen = "${./lockscreen}";
# };
};
}