break out

This commit is contained in:
2026-04-13 15:57:32 +02:00
parent f80abd24e6
commit aea03142e7
14 changed files with 154 additions and 94 deletions
+13
View File
@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
binutils
clang
cmake
gcc
gdb
gnumake
ninja
pkg-config
];
}
+32
View File
@@ -0,0 +1,32 @@
{
inputs,
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
inputs."lolcat++".packages.${pkgs.stdenv.hostPlatform.system}.default
bat
cowsay
curl
eza
fastfetch
fd
file
fortune
fzf
git
git-lfs
killall
neovim
odt2txt
openssl
ripgrep
stow
tealdeer
unzip
wget
yazi
];
}
+11
View File
@@ -0,0 +1,11 @@
{
c = import ./c.nix;
common = import ./common.nix;
desktop = import ./desktop.nix;
nix = import ./nix.nix;
node = import ./node.nix;
python = import ./python.nix;
rust = import ./rust.nix;
tpm = import ./tpm.nix;
uefi = import ./uefi.nix;
}
+43
View File
@@ -0,0 +1,43 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
brightnessctl
catfish
cliphist
dunst
ffmpegthumbnailer
firefox
flatpak
gcr
ghostty
glib
grim
hypridle
hyprlock
hyprpaper
jq
kdePackages.breeze
libgsf
libnotify
libsecret
libsForQt5.qt5ct
libsForQt5.qtstyleplugin-kvantum
mpv
networkmanagerapplet
papirus-icon-theme
pavucontrol
playerctl
qt6Packages.qt6ct
qt6Packages.qtstyleplugin-kvantum
ristretto
rofi
slurp
socat
thunar-archive-plugin
thunar-volman
waybar
wezterm
wl-clipboard
zathura
];
}
+4
View File
@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ nil ];
}
+4
View File
@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ nodejs ];
}
+4
View File
@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ python3 ];
}
+4
View File
@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ rustup ];
}
+4
View File
@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ tpm2-tools ];
}
+4
View File
@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ efibootmgr ];
}