diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-05-24 14:06:14 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-05-24 14:06:14 +0200 |
commit | 636478286139184ebfa1ffd3610ce0ca482e04fa (patch) | |
tree | 45e61147588ca73f0973ab410359f3d7c1f0e3d1 /modules/home/conf | |
parent | fix(modules/system/home-manager): Import soispha's hm config (diff) | |
download | nixos-config-636478286139184ebfa1ffd3610ce0ca482e04fa.tar.gz nixos-config-636478286139184ebfa1ffd3610ce0ca482e04fa.zip |
feat(pkgs): Pull yambar-{cpu,memory} in tree
Diffstat (limited to '')
-rw-r--r-- | modules/home/conf/yambar/default.nix | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/home/conf/yambar/default.nix b/modules/home/conf/yambar/default.nix index 021dfbdd..125030af 100644 --- a/modules/home/conf/yambar/default.nix +++ b/modules/home/conf/yambar/default.nix @@ -3,8 +3,6 @@ sysLib, system, pkgs, - yambar_cpu, - yambar_memory, ... }: let makeScript = { @@ -40,9 +38,9 @@ in { name = "sound-volume"; }; - cpu_script = yambar_cpu.app.${system}.default.program; + cpu_script = pkgs.yambar-cpu; - memory_script = yambar_memory.app.${system}.default.program; + memory_script = pkgs.yambar-memory; disk_script = makeScript { dependencies = builtins.attrValues {inherit (pkgs) gawk btrfs-progs coreutils;}; |