blob: cec1e4ff0f7175cab6cb7d141cb1705ccff4bbec (
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
26
|
#+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"
"$HOME/.local/bin"
"/usr/local/bin"
];
home.stateVersion = "24.05";
programs.home-manager.enable = true;
}
#+end_src
|