blob: c4f9722f7671e54ceab894d822049ff64b8e75a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#+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.sessionPath = [
"/opt/homebrew/bin"
"~/.local/bin"
];
home.stateVersion = "24.05";
programs.home-manager.enable = true;
}
#+end_src
|