diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-02-18 22:03:26 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-02-18 22:03:46 -0500 |
| commit | 0cf4bac8d8b5a6b3ecf914f14663cb00d4cb235b (patch) | |
| tree | c2daf12b24a85cdfd00ba6b4800a8db311ef5221 /home | |
| parent | update commit more (fix thinkpad) (diff) | |
| download | dotfiles-nix-0cf4bac8d8b5a6b3ecf914f14663cb00d4cb235b.tar.gz dotfiles-nix-0cf4bac8d8b5a6b3ecf914f14663cb00d4cb235b.tar.bz2 dotfiles-nix-0cf4bac8d8b5a6b3ecf914f14663cb00d4cb235b.zip | |
Diffstat (limited to 'home')
| -rw-r--r-- | home/apps/astal.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/home/apps/astal.nix b/home/apps/astal.nix index 1dd8527..73e90f7 100644 --- a/home/apps/astal.nix +++ b/home/apps/astal.nix @@ -1,11 +1,12 @@ { lib, config, - inputs, - system, + pkgs, ... }: let - astal = inputs.self.packages.${system}; + astal = pkgs.astal.override { + inherit (config.options) theme; + }; inherit (lib) mkIf; cfg = config.apps.astal; @@ -16,8 +17,8 @@ in { default.appLauncher = lib.mkDefault "astal-launcher"; home.packages = [ - astal.astal.shell - astal.astal.launcher + astal.shell + astal.launcher ]; systemd.user.services.astal = { @@ -33,7 +34,7 @@ in { }; Service = { - ExecStart = "${astal.astal.shell}/bin/astal-shell"; + ExecStart = "${astal.shell}/bin/astal-shell"; Restart = "always"; RestartSec = "10"; }; |