aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/home/core.org
blob: af108cfde3e491b423f5b4356bc9d4ddd13a9119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#+title: Core Home Configuration

Set up home manager for my user account and import submodules.
#+begin_src nix :tangle ~/.flake/home/core.nix :mkdirp yes
  { 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;
  }
#+end_src