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.

22 lines
622 B

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