added quickshell

This commit is contained in:
kenji
2025-07-14 22:08:23 -05:00
parent 30fbcec7f5
commit e9c69c2cc1
2 changed files with 13 additions and 1 deletions
+1
View File
@@ -88,6 +88,7 @@
services = {
displayManager.gdm.enable = true;
upower.enable = true;
scx.enable = true; # by default uses scx_rustland scheduler
libinput.enable = true;
blueman.enable = true;
+12 -1
View File
@@ -1,5 +1,13 @@
{pkgs, ...}: {
{pkgs, ...}: let
caelestia-shell = pkgs.fetchFromGitHub {
owner = "caelestia-dots";
repo = "shell";
rev = "main";
sha256 = "sha256-FHPCSy/Fd9hIpFA2BxhTkbwBtY9vtvsEUYC3+ZX6zNQ=";
};
in {
home.packages = with pkgs; [
inotify-tools
app2unit
quickshell
fish
@@ -18,4 +26,7 @@
curl
material-symbols
];
home.file.".config/quickshell" = {
source = caelestia-shell;
};
}