aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/home/core.nix
blob: cfba834acd575f02ac30112dbd43ee5bcdc77a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, pkgs, ... }:

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

  home.username = "jane";
  home.homeDirectory = "/home/jane";

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