2025-01-27 22:30:24 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (builtins) toJSON;
|
|
|
|
inherit (lib) mkIf;
|
|
|
|
inherit (config.local.systemVars) username;
|
|
|
|
in {
|
|
|
|
config = mkIf config.local.profiles.desktop.enable {
|
|
|
|
hjem.users.${username} = {
|
|
|
|
packages = with pkgs; [
|
|
|
|
entr
|
|
|
|
fractal
|
|
|
|
fzf
|
|
|
|
geary
|
|
|
|
hyfetch
|
|
|
|
imhex
|
|
|
|
logisim-evolution
|
|
|
|
mission-center
|
|
|
|
obsidian
|
|
|
|
playerctl
|
|
|
|
proton-pass
|
2025-01-30 14:39:46 +00:00
|
|
|
qalculate-gtk
|
2025-01-27 22:30:24 +00:00
|
|
|
simple-scan
|
|
|
|
wl-clipboard
|
|
|
|
];
|
|
|
|
|
|
|
|
files = {
|
|
|
|
".config/hyfetch.json".text = toJSON {
|
|
|
|
preset = "nonbinary";
|
|
|
|
mode = "rgb";
|
|
|
|
backend = "fastfetch";
|
|
|
|
color_align.mode = "horizontal";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|