Files
nix-config/users/anon/home.nix
2025-04-14 18:12:29 +02:00

24 lines
657 B
Nix

{ config, pkgs, inputs, ... }:
{
home = {
# 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 can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
stateVersion = "23.05";
};
imports = [
../../home-manager/nixvim
../../home-manager/gitconfig.nix
../../home-manager/zsh
../../home-manager/direnv.nix
inputs.nixvim.homeManagerModules.nixvim
];
}