mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
18 lines
285 B
Nix
18 lines
285 B
Nix
# pulled from https://codeberg.org/zacoons/rivendell-hyprdots
|
|
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
qt.enable =true;
|
|
programs.quickshell = {
|
|
systemd.enable = true;
|
|
enable = true;
|
|
};
|
|
home.file.".config/quickshell" = {
|
|
source = ../../other/quickshell;
|
|
recursive = true;
|
|
};
|
|
}
|