e8086e8528
plugins, new cursor, light/dark themes, new app launcher, ...
12 lines
215 B
Nix
12 lines
215 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
home.packages = [
|
|
inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
];
|
|
|
|
xdg.configFile."quickshell" = {
|
|
source = ./quickshell;
|
|
recursive = true;
|
|
};
|
|
}
|