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

Set up home manager for my user account and import submodules.
#+begin_src nix
  { config, pkgs, ... }:

  {
    imports = [
      ./clang-format.nix
      ./fonts.nix
      ./programs/core.nix
    ];

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

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