nixos_config/home/home.nix

70 lines
1.6 KiB
Nix
Raw Normal View History

2024-05-07 15:37:50 -04:00
{
lib,
2024-06-29 06:25:49 -04:00
aaru,
agenix,
2024-05-07 15:37:50 -04:00
config,
modulesPath,
nixosConfig,
nixpkgs,
options,
osConfig,
2024-05-07 15:37:50 -04:00
pkgs,
rom-properties,
specialArgs,
system,
xil
2024-05-07 15:37:50 -04:00
}:
{
imports = [
./pkgs_and_programs.nix # home.packages and programs
./dotfiles.nix # home.file
./variables.nix # home.sessionVariables
./aliases.nix # home.shellAliases
# ./rust.nix # Should be my `rustfmt` config.
# I no longer have an interest in Rust. :)
];
home = {
# Home Manager needs a bit of information about you and the paths it should
# manage.
username = "whovian";
homeDirectory = "/home/whovian";
2024-05-07 15:37:50 -04:00
/*
This value determines the Home Manager release that your configuration is
compatible with. This helps avoid breakage when a new Home Manager release
introduces backwards incompatible changes.
You should not change this value, even if you update Home Manager. If you do
want to update the value, then make sure to first check the Home Manager
release notes.
*/
stateVersion = "23.05"; # Please read the comment before changing.
2024-05-07 22:55:55 -04:00
# Let Home Manager install and manage itself.
# Probably not needed for a module?
# programs.home-manager.enable = true;
};
2024-05-07 15:37:50 -04:00
/* age = {
2024-05-07 15:37:50 -04:00
identityPaths = [
/home/whovian/.ssh/id_ed25519.nix
];
secrets = {
cursed = {
file = ./secrets/curse.age;
};
openai = {
file = ./secrets/openai_key.age;
};
2024-05-13 03:57:53 -04:00
itchy = {
file = ./secrets/itchy.age;
2024-05-13 03:57:53 -04:00
};
elixire = {
file = ./secrets/elixire.age;
};
2024-05-07 15:37:50 -04:00
};
};
*/
2024-05-07 15:37:50 -04:00
}