2024-04-28 11:35:35 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
rofi
|
2024-06-11 20:09:58 +02:00
|
|
|
#rofi-calc
|
2024-04-28 11:35:35 +02:00
|
|
|
btop
|
2024-06-11 20:09:58 +02:00
|
|
|
#polybar
|
2024-04-28 11:35:35 +02:00
|
|
|
nitrogen
|
|
|
|
ranger
|
|
|
|
neofetch
|
2024-06-11 20:09:58 +02:00
|
|
|
#peaclock
|
2024-04-28 11:35:35 +02:00
|
|
|
cava
|
|
|
|
bluetuith
|
|
|
|
|
|
|
|
# for screcsotting
|
|
|
|
scrot
|
|
|
|
xclip
|
|
|
|
maim
|
|
|
|
|
|
|
|
# multimedia
|
|
|
|
feh
|
|
|
|
mpv
|
|
|
|
neovim
|
|
|
|
|
|
|
|
#animated bg
|
|
|
|
#(pkgs.callPackage ./apps/wallpepper/default.nix { })
|
|
|
|
|
|
|
|
# file managing
|
|
|
|
filezilla
|
|
|
|
|
|
|
|
# screen sharing
|
2024-05-18 01:10:04 +02:00
|
|
|
obs-studio
|
|
|
|
qpwgraph
|
2024-04-28 11:35:35 +02:00
|
|
|
|
|
|
|
# work
|
|
|
|
#figma-linux
|
|
|
|
#kdenlive
|
2024-06-11 20:09:58 +02:00
|
|
|
#ffmpeg
|
2024-04-28 11:35:35 +02:00
|
|
|
|
|
|
|
#video-trimmer
|
2024-05-18 01:10:04 +02:00
|
|
|
peek
|
2024-04-28 11:35:35 +02:00
|
|
|
|
2024-05-18 01:10:04 +02:00
|
|
|
# for replay
|
|
|
|
xdotool
|
|
|
|
jq
|
2024-05-28 02:36:04 +02:00
|
|
|
|
2024-06-11 20:09:58 +02:00
|
|
|
#librewolf
|
|
|
|
#gimp
|
|
|
|
|
2024-04-28 11:35:35 +02:00
|
|
|
];
|
|
|
|
fonts.packages = with pkgs; [
|
|
|
|
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
|
|
|
];
|
|
|
|
|
2024-07-13 17:48:39 +02:00
|
|
|
home-manager.backupFileExtension = "backup";
|
2024-04-28 11:35:35 +02:00
|
|
|
|
|
|
|
imports = [
|
|
|
|
./configs/i3.nix
|
|
|
|
./configs/rofi.nix
|
|
|
|
./configs/picom.nix
|
|
|
|
./configs/polybar.nix
|
|
|
|
./configs/btop.nix
|
|
|
|
./configs/ollama.nix
|
|
|
|
|
|
|
|
./configs/vscode.nix
|
|
|
|
./configs/gpu-screen-recorder.nix
|
|
|
|
./configs/firefox.nix
|
|
|
|
|
2024-07-13 17:48:39 +02:00
|
|
|
./configs/waydroid.nix
|
|
|
|
|
2024-06-11 20:09:58 +02:00
|
|
|
#./configs/builders.nix
|
|
|
|
./configs/element.nix
|
|
|
|
./configs/nvim.nix
|
|
|
|
|
2024-04-28 11:35:35 +02:00
|
|
|
# terminal
|
|
|
|
#./configs/st.nix # too minimal, most things dont work without a million tweaks
|
|
|
|
#./configs/kitty.nix # uses their own stupid xterm extension...
|
|
|
|
./configs/alacritty.nix # just perfect, tho too much gpu usage
|
|
|
|
|
2024-06-11 20:09:58 +02:00
|
|
|
# apps
|
|
|
|
./apps/graphics.nix
|
|
|
|
|
2024-07-13 17:48:39 +02:00
|
|
|
# other
|
|
|
|
./configs/firewall.nix
|
|
|
|
|
2024-04-28 11:35:35 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|