37 lines
555 B
Nix
37 lines
555 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./git
|
|
./hypr
|
|
./shell/adam.nix
|
|
./appearance
|
|
];
|
|
home.packages = with pkgs; [
|
|
# Desktop
|
|
alacritty
|
|
wl-clipboard
|
|
keepassxc
|
|
ranger
|
|
webcord
|
|
xfce.thunar
|
|
xfce.thunar-volman
|
|
xfce.thunar-archive-plugin
|
|
gnome.file-roller
|
|
wireguard-tools
|
|
wpa_supplicant
|
|
ntfs3g
|
|
kdePackages.polkit-kde-agent-1
|
|
networkmanagerapplet
|
|
htop
|
|
btop
|
|
pamixer
|
|
qbittorrent
|
|
fastfetch
|
|
waybar
|
|
nwg-look
|
|
thefuck
|
|
calcurse
|
|
gnome.adwaita-icon-theme
|
|
];
|
|
}
|