nixos configurations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
684 B

4 months ago
  1. {pkgs, settings, ...}:
  2. {
  3. imports = [
  4. ../modules/home/git.nix
  5. ../modules/home/zsh.nix
  6. ];
  7. home.username = settings.user.name;
  8. home.homeDirectory = "/home/${settings.user.name}";
  9. # Let Home Manager install and manage itself.
  10. programs.home-manager.enable = true;
  11. # This value determines the Home Manager release that your
  12. # configuration is compatible with. This helps avoid breakage
  13. # when a new Home Manager release introduces backwards
  14. # incompatible changes.
  15. #
  16. # You can update Home Manager without changing this value. See
  17. # the Home Manager release notes for a list of state version
  18. # changes in each release.
  19. home.stateVersion = "23.11";
  20. }