summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-02-18 22:03:26 -0500
committerFreya Murphy <freya@freyacat.org>2026-02-18 22:03:46 -0500
commit0cf4bac8d8b5a6b3ecf914f14663cb00d4cb235b (patch)
treec2daf12b24a85cdfd00ba6b4800a8db311ef5221 /home
parentupdate commit more (fix thinkpad) (diff)
downloaddotfiles-nix-0cf4bac8d8b5a6b3ecf914f14663cb00d4cb235b.tar.gz
dotfiles-nix-0cf4bac8d8b5a6b3ecf914f14663cb00d4cb235b.tar.bz2
dotfiles-nix-0cf4bac8d8b5a6b3ecf914f14663cb00d4cb235b.zip
update commits (nvidia still brokie)HEADmain
Diffstat (limited to 'home')
-rw-r--r--home/apps/astal.nix13
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";
};