ab16557edf
* docs: add better comments * add deploy-rs * wip * hackz * chore: make gc daily * chore: add --fast for haxing * fix: re-did home-manager * hax * hack * fix: re-factor homemanager for garnix? --------- Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
25 lines
305 B
Nix
25 lines
305 B
Nix
{ lib, pkgs, self, config, ... }:
|
|
with config;
|
|
{
|
|
|
|
home = {
|
|
# Install these packages for my user
|
|
packages = with pkgs; [
|
|
discord
|
|
steam
|
|
spotify
|
|
brightnessctl
|
|
|
|
bat
|
|
dbus
|
|
direnv
|
|
git
|
|
nix-index
|
|
python3
|
|
fzf
|
|
ripgrep
|
|
|
|
];
|
|
|
|
};
|
|
}
|