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/profiles/workstation.nix

26 lines
305 B
Nix
Raw Normal View History

{ 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
];
};
}