dotfiles/nixos/.flake/home/core.org
2024-09-27 20:28:05 -05:00

546 B

Core Home Configuration

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

  { config, pkgs, ... }:

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

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

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