djmuk1.nix 713 B

1234567891011121314151617181920212223
  1. { config, pkgs, ... }:
  2. {
  3. imports = [ ./includes/linux-server.nix ];
  4. # Let Home Manager install and manage itself.
  5. programs.home-manager.enable = true;
  6. # Home Manager needs a bit of information about you and the
  7. # paths it should manage.
  8. home.username = "djm";
  9. home.homeDirectory = "/home/djm";
  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 = "21.05";
  19. }