33 lines
662 B
Nix
33 lines
662 B
Nix
{ pkgs, ... }: {
|
|
home = {
|
|
username = "jadenmaxwell";
|
|
homeDirectory = "/Users/jadenmaxwell";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
gnupg
|
|
vesktop
|
|
];
|
|
|
|
imports = [
|
|
./shared.nix
|
|
./modules/utils.nix
|
|
./modules/development.nix
|
|
./modules/sketchybar.nix
|
|
./modules/aerospace.nix
|
|
./modules/neovim.nix
|
|
./modules/emacs.nix
|
|
./modules/zsh.nix
|
|
];
|
|
|
|
programs.ssh.extraConfig = ''
|
|
Host 192.168.100.*
|
|
SetEnv TERM=xterm-256color
|
|
'';
|
|
|
|
home.file = {
|
|
".config/ghostty/config".source = ../dotfiles/.config/ghostty/config;
|
|
".config/qutebrowser/config.py".source = ../dotfiles/.config/qutebrowser/config.py;
|
|
};
|
|
}
|