dotfiles/etc/desktop.nix
2005 a9f0e0bd12 💫 some look changes
added rofi theme but it kinda looks scuffed. (last update broke the theme)
added waydroid
few more applications
enabled ollama once again
vscode: added typescript prettier linter
2024-07-13 17:48:39 +02:00

91 lines
1.4 KiB
Nix
Executable file

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
rofi
#rofi-calc
btop
#polybar
nitrogen
ranger
neofetch
#peaclock
cava
bluetuith
# for screcsotting
scrot
xclip
maim
# multimedia
feh
mpv
neovim
#animated bg
#(pkgs.callPackage ./apps/wallpepper/default.nix { })
# file managing
filezilla
# screen sharing
obs-studio
qpwgraph
# work
#figma-linux
#kdenlive
#ffmpeg
#video-trimmer
peek
# for replay
xdotool
jq
#librewolf
#gimp
];
fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
];
home-manager.backupFileExtension = "backup";
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
./configs/waydroid.nix
#./configs/builders.nix
./configs/element.nix
./configs/nvim.nix
# 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
# apps
./apps/graphics.nix
# other
./configs/firewall.nix
];
}