1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00

gurk-rs: fix missing s in home.packages (#7467)

This commit is contained in:
awwpotato 2025-07-13 16:36:07 -07:00 committed by GitHub
parent 7969ed8baa
commit 1a4d8ffd32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,7 +45,7 @@ in
};
config = lib.mkIf cfg.enable {
home.package = lib.mkIf (cfg.package != null) [ cfg.package ];
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
home.file."${
if pkgs.stdenv.hostPlatform.isDarwin then "Library/Application Support" else config.xdg.configHome