2025-01-27 23:30:24 +01:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: let
|
2025-02-23 00:01:57 +01:00
|
|
|
inherit (lib.modules) mkIf;
|
|
|
|
|
2025-01-27 23:30:24 +01:00
|
|
|
inherit (config.local.systemVars) username;
|
|
|
|
in {
|
2025-02-23 00:01:57 +01:00
|
|
|
config = mkIf config.local.profiles.desktop.enable {
|
2025-01-27 23:30:24 +01:00
|
|
|
hjem.users.${username} = {
|
|
|
|
packages = [pkgs.zoxide];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|