nichts/hosts/common.nix
Bloxx12 f813eb37d3
security: enable soteria
Soteria is a GTK-based Polkit authentication agent.
2025-07-19 00:47:08 +02:00

52 lines
1 KiB
Nix

# This is for packages I want in all systems.
# Keeping this list as small as possible is important,
# since these also get installed to server,
# which should have a small attack surface.
{
lib,
self,
pkgs,
...
}: let
inherit (lib.meta) hiPrioSet;
inherit (self.packages.${pkgs.stdenv.system}) helix fish;
in {
environment.systemPackages =
builtins.attrValues {
inherit
(pkgs)
cachix
calc
delta
difftastic
eza
gcc
git
httpie
inetutils
jujutsu
just
lazygit
linuxHeaders
neofetch
microfetch
mprocs
nmap
ripgrep
smartmontools
television
trash-cli
util-linux
uutils-coreutils-noprefix
w3m
wireguard-tools
zip
zoxide
;
}
++ builtins.attrValues (hiPrioSet {
inherit helix fish;
});
# helix as the only editor, a reasonable choice.
environment.sessionVariables.EDITOR = "hx";
}