1
0

home.nix 381 B

12345678910111213141516171819
  1. { config, pkgs, lib, ... }:
  2. let
  3. users = import ../../config/users.nix;
  4. in
  5. {
  6. imports = [
  7. ../../home/flavors/desktop/hyprland
  8. ../../home/flavors/application/workstation
  9. ../../home/flavors/application/development
  10. ];
  11. news.display = "silent";
  12. home = {
  13. username = users.default;
  14. homeDirectory = "/home/${users.default}";
  15. stateVersion = "26.05";
  16. };
  17. }