diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-29 14:42:35 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-29 14:42:35 -0400 |
| commit | 4a04f4170df4903d635fe79353031d2917f36139 (patch) | |
| tree | 4f5d919956a500044afd96e92d15249562735524 | |
| parent | fix nvidia reflex (diff) | |
| download | dotfiles-nix-4a04f4170df4903d635fe79353031d2917f36139.tar.gz dotfiles-nix-4a04f4170df4903d635fe79353031d2917f36139.tar.bz2 dotfiles-nix-4a04f4170df4903d635fe79353031d2917f36139.zip | |
update shell
| -rw-r--r-- | flake.lock | 41 | ||||
| -rw-r--r-- | home/apps/caelestia/default.nix | 1 | ||||
| -rw-r--r-- | home/apps/caelestia/settings.nix | 48 |
3 files changed, 19 insertions, 71 deletions
@@ -120,44 +120,19 @@ "type": "github" } }, - "caelestia-cli": { - "inputs": { - "caelestia-shell": [ - "caelestia-shell" - ], - "nixpkgs": [ - "caelestia-shell", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1767905196, - "narHash": "sha256-72Z9vz1dq9FtLc7rjU9GwErUNmKZd6ZBIX1tUznwq7U=", - "ref": "refs/heads/main", - "rev": "8056a87db5c2f6a8df23f2b6b1867471e2b8995d", - "revCount": 419, - "type": "git", - "url": "https://g.freya.cat/caelestia-cli" - }, - "original": { - "type": "git", - "url": "https://g.freya.cat/caelestia-cli" - } - }, "caelestia-shell": { "inputs": { - "caelestia-cli": "caelestia-cli", "nixpkgs": [ "nixpkgs" ], "quickshell": "quickshell" }, "locked": { - "lastModified": 1773771498, - "narHash": "sha256-0+b85clo3NwGEm5kxLhYAezlJi0eDXTSJTbxCaunzTM=", + "lastModified": 1780079616, + "narHash": "sha256-/HYtHWnP3UbzQnvVuWNoQfIl4kFsEU1zpILEY8wHn+U=", "ref": "refs/heads/main", - "rev": "76b2b96be41d276505b4346433a1bcd7adb9d004", - "revCount": 1847, + "rev": "6c9f87fb24897ff015f1c71452ee9b46d7a120e7", + "revCount": 1849, "type": "git", "url": "https://g.freya.cat/caelestia-shell" }, @@ -955,11 +930,11 @@ ] }, "locked": { - "lastModified": 1773648506, - "narHash": "sha256-uVdqQIOzmMcHy1bUyF5NdZ3T5f1/5OVSNx3nIoXV6Os=", + "lastModified": 1779430452, + "narHash": "sha256-zTslhsxLqUlRTML506iougTGzyR38Fzhzn7t4KDEuuE=", "ref": "refs/heads/master", - "rev": "6705e2da778d216e81dbdc3764a3f50e89bfd87d", - "revCount": 761, + "rev": "4b4fca3224ab977dc515ac0bb78d00b3dfa71e00", + "revCount": 819, "type": "git", "url": "https://git.outfoxxed.me/quickshell/quickshell" }, diff --git a/home/apps/caelestia/default.nix b/home/apps/caelestia/default.nix index d691fb8..7237c41 100644 --- a/home/apps/caelestia/default.nix +++ b/home/apps/caelestia/default.nix @@ -19,7 +19,6 @@ in { programs.caelestia = { enable = true; systemd.enable = true; - cli.enable = true; }; }; } diff --git a/home/apps/caelestia/settings.nix b/home/apps/caelestia/settings.nix index 5c8a418..bfe102f 100644 --- a/home/apps/caelestia/settings.nix +++ b/home/apps/caelestia/settings.nix @@ -75,12 +75,7 @@ in { # Settings general = { - # What apps to launch - apps = { - terminal = config.default.terminal; - audio = ["pavucontrol"]; - playback = ["mpv"]; - }; + terminal = config.default.terminal; }; # Launcher settings @@ -126,7 +121,7 @@ in { }; showOnHover = true; status = { - showAudio = false; + showAudio = true; showBattery = config.battery.enable; showBluetooth = config.bluetooth.enable; showKbLayout = false; @@ -154,12 +149,6 @@ in { rounding = config.theme.outerRadius; thickness = config.theme.outerGap; }; - dashboard = { - enabled = true; - dragThreshold = 50; - mediaUpdateInterval = 500; - showOnHover = true; - }; }; # Notifications @@ -185,8 +174,6 @@ in { audioIncrement = 0.1; brightnessIncrement = 0.1; maxVolume = 1.0; - useFahrenheit = false; - useFahrenheitPerformance = false; useTwelveHourClock = false; }; @@ -203,30 +190,17 @@ in { }; }; - # Sidebar - sidebar = { - dragThreshold = 80; - enabled = true; + # Toasts + toasts = { + audioInputChanged = true; + audioOutputChanged = true; + capsLockChanged = true; + chargingChanged = true; + configLoaded = true; + kbLayoutChanged = true; + numLockChanged = true; }; - # idk - utilities = { - enabled = true; - maxToasts = 4; - toasts = { - audioInputChanged = true; - audioOutputChanged = true; - capsLockChanged = true; - chargingChanged = true; - configLoaded = true; - dndChanged = true; - gameModeChanged = true; - kbLayoutChanged = true; - numLockChanged = true; - vpnChanged = true; - nowPlaying = false; - }; - }; }; }; }; |