diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-12-16 23:28:56 -0600 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-12-16 23:28:56 -0600 |
commit | 26dd014860c0edd89a859d2d8c6dff10275acbad (patch) | |
tree | be704eafeb9458cf202240dc0108f13501ae4272 /macos.local/.flake/home/core.nix.org | |
parent | 530ee85037375106652e51a23cf05deb2a5ad1d9 (diff) |
system changes
Diffstat (limited to 'macos.local/.flake/home/core.nix.org')
-rw-r--r-- | macos.local/.flake/home/core.nix.org | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/macos.local/.flake/home/core.nix.org b/macos.local/.flake/home/core.nix.org index cec1e4f..4f0c7a9 100644 --- a/macos.local/.flake/home/core.nix.org +++ b/macos.local/.flake/home/core.nix.org @@ -9,18 +9,30 @@ Set up home manager for my user account and import submodules. ./clang-format.nix ./fonts.nix ./programs/core.nix + ./scripts/core.nix ]; + home.stateVersion = "24.05"; + programs.home-manager.enable = true; +#+end_src + +Set username and paths. +#+begin_src nix home.username = "jjanzen"; home.homeDirectory = "/Users/jjanzen"; +#+end_src + +Import a wallpaper to the path =~/.wallpaper=. +#+begin_src nix home.file.".wallpaper".source = ./.wallpaper; +#+end_src + +Add Homebrew to the path along with standard =bin= directories. +#+begin_src nix home.sessionPath = [ "/opt/homebrew/bin" "$HOME/.local/bin" "/usr/local/bin" ]; - - home.stateVersion = "24.05"; - programs.home-manager.enable = true; } #+end_src |