2023-11-10 18:48:06 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
psCfg = config.pub-solar;
|
|
|
|
in {
|
|
|
|
users.users."${psCfg.user.name}".packages = with pkgs; [
|
|
|
|
ungoogled-chromium
|
|
|
|
|
|
|
|
gimp
|
|
|
|
inkscape
|
|
|
|
tigervnc
|
2024-02-02 22:27:44 +00:00
|
|
|
nodejs_20
|
2023-11-10 18:48:06 +00:00
|
|
|
|
|
|
|
signal-desktop
|
|
|
|
tdesktop
|
|
|
|
element-desktop
|
|
|
|
|
|
|
|
# Nix specific utilities
|
|
|
|
alejandra
|
|
|
|
manix
|
|
|
|
nix-output-monitor
|
|
|
|
nix-tree
|
|
|
|
nvd
|
2023-12-04 11:37:31 +00:00
|
|
|
nixpkgs-review
|
2024-03-06 17:51:49 +00:00
|
|
|
nix-update
|
2023-12-04 11:37:31 +00:00
|
|
|
nix-search-cli
|
2023-11-10 18:48:06 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
fonts = {
|
2023-11-12 18:06:07 +00:00
|
|
|
packages = with pkgs; [
|
2023-11-10 18:48:06 +00:00
|
|
|
dejavu_fonts
|
|
|
|
fira-code
|
|
|
|
fira-code-symbols
|
2023-11-12 18:06:07 +00:00
|
|
|
#google-fonts
|
2023-11-10 18:48:06 +00:00
|
|
|
lato
|
|
|
|
montserrat
|
|
|
|
nerdfonts
|
|
|
|
noto-fonts
|
|
|
|
noto-fonts-cjk
|
|
|
|
open-sans
|
|
|
|
powerline-fonts
|
|
|
|
source-sans-pro
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|