This commit is contained in:
cnst
2024-07-06 08:00:21 +02:00
parent 6c6055d023
commit 4970b74255
3 changed files with 51 additions and 1 deletions

50
home/extra/default.nix Normal file
View File

@@ -0,0 +1,50 @@
{
pkgs,
inputs,
...
}: {
imports = [
./kitty
./foot
./firefox
./neovim
./mako
];
config = {
home-manager.users.cnst = {pkgs, ...}: {
home.packages = with pkgs; [
# APPLICATIONS
alacritty
keepassxc
qbittorrent
ranger
webcord
calcurse
xfce.thunar
# UTILITY
wl-clipboard
xfce.thunar-volman
xfce.thunar-archive-plugin
gnome.file-roller
pamixer
pavucontrol
virt-manager
fastfetch
waybar
nwg-look
thefuck
gnome.adwaita-icon-theme
# NETWORK
wireguard-tools
networkmanagerapplet
wpa_supplicant
# SYSTEM
btop
htop
];
};
};
}