mochi/nixos/home/jahanson/sworkstation.nix
Joseph Hanson 7f4bc84e9e
Some checks failed
Build / nix-build (native-x86_64, gandalf) (push) Failing after 21s
Build / nix-build (native-x86_64, telperion) (push) Successful in 4m48s
Build / nix-build (native-x86_64, shadowfax) (push) Failing after 33m52s
update firefox, vscode, nvim, and added prowlarr service config
switched shadowfax to a sworkstation config from server config.
2025-02-02 16:02:02 -06:00

33 lines
768 B
Nix

{pkgs, ...}: {
imports = [
./global.nix
];
config = {
myHome = {
programs.firefox.enable = true;
programs.thunderbird.enable = true;
shell = {
# soon(tm)
# ghostty.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
solaar # open source manager for logitech unifying receivers
# unstable.vesktop # gpu issues. Using the flatpak version solves this issue.
vlc
];
};
};
}