home.nix 412 B

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