mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
33 lines
521 B
Nix
33 lines
521 B
Nix
{ config, pkgs, lib, ... }: {
|
|
home-manager.users.coast = {
|
|
home.packages = with pkgs; [
|
|
smartmontools
|
|
autotiling
|
|
nsxiv
|
|
nodejs
|
|
tree
|
|
zig
|
|
nwg-look
|
|
mate.caja
|
|
htop
|
|
alsa-utils
|
|
wl-clipboard
|
|
dysk
|
|
yazi
|
|
nix-search-cli
|
|
neofetch
|
|
mako
|
|
ruby_3_4
|
|
gcc
|
|
libnotify
|
|
grim
|
|
slurp
|
|
git
|
|
autotiling
|
|
appimage-run
|
|
];
|
|
|
|
programs.firefox.enable = true;
|
|
programs.vesktop.enable = true;
|
|
};
|
|
}
|