mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 11:43:55 -05:00
Aly Raffauf
905745e6f8
* slateport: remove stylix * slateport: override aly hm config * slateport: override hm config with aly-nox * aly: link nox and gui home configs
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home = {
|
|
homeDirectory = "/home/aly";
|
|
|
|
packages = with pkgs; [
|
|
browsh
|
|
curl
|
|
];
|
|
|
|
stateVersion = "24.05";
|
|
username = "aly";
|
|
};
|
|
|
|
programs = {
|
|
git = {
|
|
enable = true;
|
|
lfs.enable = true;
|
|
userName = "Aly Raffauf";
|
|
userEmail = "aly@raffauflabs.com";
|
|
|
|
extraConfig = {
|
|
color.ui = true;
|
|
github.user = "alyraffauf";
|
|
push.autoSetupRemote = true;
|
|
};
|
|
};
|
|
|
|
gitui.enable = true;
|
|
home-manager.enable = true;
|
|
|
|
rbw = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
email = "alyraffauf@fastmail.com";
|
|
lock_timeout = 14400;
|
|
};
|
|
};
|
|
};
|
|
|
|
systemd.user.startServices = "legacy"; # Needed for auto-mounting agenix secrets.
|
|
|
|
ar.home = {
|
|
apps = {
|
|
backblaze = {
|
|
enable = true;
|
|
keyIdFile = config.age.secrets.backblazeKeyId.path;
|
|
keyFile = config.age.secrets.backblazeKey.path;
|
|
};
|
|
|
|
fastfetch.enable = true;
|
|
helix.enable = true;
|
|
shell.enable = true;
|
|
tmux.enable = true;
|
|
yazi.enable = true;
|
|
};
|
|
};
|
|
}
|