dotfiles/nixos/flake/home/core.nix.org
2025-03-05 22:17:31 -06:00

577 B

Core Home Configuration

Set up home manager for my user account and import submodules.

  { config, pkgs, ... }:

  {
    imports = [
      ./clang-format.nix
      ./cursor.nix
      ./fonts.nix
      ./hyprland.nix
      ./programs/core.nix
      ./scripts.nix
      ./services/core.nix
    ];

    home.username = "jjanzen";
    home.homeDirectory = "/home/jjanzen";
    home.file.".wallpaper".source = ./.wallpaper;

    home.stateVersion = "24.05";
    programs.home-manager.enable = true;
  }