os/modules/desktop-extended/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
738 B
Nix
Raw Normal View History

{
config,
pkgs,
...
}:
2024-05-12 16:12:05 +00:00
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
signal-desktop
tdesktop
element-desktop
binutils
2024-05-12 16:12:05 +00:00
ripgrep
# Nix specific utilities
alejandra
manix
nix-init
nix-inspect
nix-output-monitor
nix-tree
nvd
nixpkgs-review
2024-03-06 17:51:49 +00:00
nix-update
nix-search-cli
];
fonts = {
2023-11-12 18:06:07 +00:00
packages = with pkgs; [
dejavu_fonts
fira-code
fira-code-symbols
2023-11-12 18:06:07 +00:00
#google-fonts
lato
montserrat
nerdfonts
noto-fonts
noto-fonts-cjk
open-sans
powerline-fonts
source-sans-pro
];
};
}