home.nix 572 B

12345678910111213141516171819202122232425262728
  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. #custom.swayExtras = {
  18. # displays = ''
  19. # output eDP-1 pos 0 0 mode 1920x1080@59.999Hz
  20. # output * pos 1920 0 adaptive_sync off
  21. #
  22. # workspace 1 output eDP-1
  23. # '';
  24. #};
  25. }