Move quickshell to its own module
This commit is contained in:
parent
1dd031aa6b
commit
b6bff47ed1
9 changed files with 34 additions and 30 deletions
12
modules/user/modules/quickshell/default.nix
Normal file
12
modules/user/modules/quickshell/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ inputs, pkgs, lib, system, impurity, ... }: let
|
||||
inherit (inputs) quickshell;
|
||||
in {
|
||||
home.packages = [
|
||||
quickshell.packages.${system}.default
|
||||
pamtester # lockscreen
|
||||
];
|
||||
|
||||
xdg.configFile."quickshell/manifest.conf".text = lib.generators.toKeyValue {} {
|
||||
lockscreen = impurity.link ./lockscreen;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue