feat(tyr): setup home manager.

This commit is contained in:
CronyAkatsuki 2025-09-24 16:39:50 +02:00
parent f1f24c8e07
commit bb8471de68
3 changed files with 36 additions and 6 deletions

18
hosts/tyr/home.nix Normal file
View file

@ -0,0 +1,18 @@
{inputs, ...}: {
imports = [
inputs.nvf.homeManagerModules.default
inputs.nix-index-database.homeModules.nix-index
inputs.nix-flatpak.homeManagerModules.nix-flatpak
inputs.agenix.homeManagerModules.default
];
# Some info
home.username = "crony";
home.homeDirectory = "/home/crony";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# DO NOT CHANGE
home.stateVersion = "24.11"; # Please read the comment before changing.
}