dotfiles/nix/desktop.nix

63 lines
768 B
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
qbittorrent
#librewolf
#gimp
];
fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
];
home-manager.backupFileExtension = "backup";
}