quickshell/module.nix: move from home.packges to environment.systemPackages
This commit is contained in:
parent
a63b4c9b0e
commit
fb4ebc9f58
1 changed files with 15 additions and 23 deletions
|
@ -7,28 +7,20 @@
|
||||||
}: let
|
}: let
|
||||||
inherit (inputs) quickshell;
|
inherit (inputs) quickshell;
|
||||||
inherit (lib.generators) toKeyValue;
|
inherit (lib.generators) toKeyValue;
|
||||||
inherit (config.meta.mainUser) username;
|
|
||||||
in {
|
in {
|
||||||
home-manager.users.${username} = {
|
environment.systemPackages = with pkgs; [
|
||||||
home.packages = with pkgs; [
|
qt6.qtimageformats # amog
|
||||||
qt6.qtimageformats # amog
|
qt6.qt5compat # shader fx
|
||||||
qt6.qt5compat # shader fx
|
(quickshell.packages.x86_64-linux.default.override {
|
||||||
(quickshell.packages.x86_64-linux.default.override {
|
withJemalloc = true;
|
||||||
withJemalloc = true;
|
withQtSvg = true;
|
||||||
withQtSvg = true;
|
withX11 = true;
|
||||||
withX11 = true;
|
withPipewire = true;
|
||||||
withPipewire = true;
|
withPam = true;
|
||||||
withPam = true;
|
withHyprland = true;
|
||||||
withHyprland = true;
|
})
|
||||||
})
|
pamtester # lockscreen
|
||||||
pamtester # lockscreen
|
grim
|
||||||
grim
|
imagemagick # screenshot
|
||||||
imagemagick # screenshot
|
];
|
||||||
];
|
|
||||||
|
|
||||||
# xdg.configFile."quickshell/manifest.conf".text = toKeyValue {} {
|
|
||||||
# shell = "${./shell}";
|
|
||||||
# # lockscreen = "${./lockscreen}";
|
|
||||||
# };
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue