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

36 lines
530 B
Nix
Raw Normal View History

{ lib, pkgs, self, config, ... }:
with config;
{
2024-03-31 05:40:20 -05:00
imports = [
./global.nix
];
myHome.programs.firefox.enable = true;
myHome.shell.starship.enable = true;
myHome.shell.fish.enable = true;
myHome.shell.wezterm.enable = true;
home = {
# Install these packages for my user
packages = with pkgs; [
discord
steam
spotify
brightnessctl
2024-03-31 05:40:20 -05:00
prusa-slicer
bitwarden
bat
dbus
direnv
git
nix-index
python3
fzf
ripgrep
];
};
}