feat: differentiate between core and extended pkgs

also use core packages in server system profile
This commit is contained in:
Ranomier 2025-05-10 22:09:55 +02:00
parent 9320bd758a
commit 6960c79fbd
5 changed files with 22 additions and 19 deletions

View file

@ -0,0 +1,13 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
file
git
htop
ncdu
p7zip
ripgrep
tmux
unzip
wget
];
}

View file

@ -0,0 +1,6 @@
{
imports = [
./core.nix
./extended.nix
];
}

View file

@ -0,0 +1,59 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
# low level stuff
efibootmgr
#exfat
exfatprogs
greetd.greetd
greetd.tuigreet
killall
vulnix
# hardware
brightnessctl
usbutils
lm_sensors
unstable.neovim
gitui
lazygit
gnumake
gcc
nodePackages.npm
nodejs-slim
python3
fd
nodejs-slim
cargo
rustc
# tooling
btop
unstable.yt-dlp
miniserve
fzf
qemu
home-manager
dfc
sops
# move to homemanager?
unstable.mumble
amberol
mpv
nuclear
#zathura
sioyek
#feh
nomacs
#unstable.obsidian
keepassxc
#minecraft
element-desktop
rustdesk-flutter
timer
unstable.prusa-slicer
];
}