flocon/modules/programs/misc.nix

41 lines
749 B
Nix
Raw Normal View History

{
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
qalculate-gtk
simple-scan
wl-clipboard
];
files = {
".config/hyfetch.json".text = toJSON {
preset = "nonbinary";
mode = "rgb";
backend = "fastfetch";
color_align.mode = "horizontal";
};
};
};
};
}