This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/nixos/home/truxnell/workstation.nix
2024-03-31 15:02:26 +11:00

26 lines
323 B
Nix

{ lib, pkgs, self, config, ... }:
with config;
{
home = {
# Install these packages for my user
packages = with pkgs; [
discord
steam
spotify
brightnessctl
prusaslicer
bat
dbus
direnv
git
nix-index
python3
fzf
ripgrep
];
};
}