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/jahanson/workstation.nix
jahanson ca25688c2c
All checks were successful
Build / nix-build (native-x86_64, durincore) (pull_request) Successful in 7m46s
Build / nix-build (native-aarch64, varda) (pull_request) Successful in 1m29s
Mixing things around
2024-05-30 21:33:06 -05:00

44 lines
800 B
Nix

{ pkgs, config, ... }:
with config;
{
imports = [
./global.nix
];
myHome.programs.firefox.enable = true;
myHome.shell = {
starship.enable = true;
fish.enable = true;
git = {
enable = true;
username = "Joseph Hanson";
email = "joe@veri.dev";
signingKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDSAmssproxG+KsVn2DfuteBAemHrmmAFzCtldpKl4J";
};
};
home = {
# Install these packages for my user
packages = with pkgs;
[
#apps
_1password-gui
discord
yubioath-flutter
yubikey-manager-qt
flameshot
vlc
# cli
brightnessctl
# dev utils
pre-commit # Pre-commit tasks for git
minio-client # S3 management
shellcheck
];
};
}