diff options
Diffstat (limited to 'macos.local/.flake/home/core.nix.org')
-rw-r--r-- | macos.local/.flake/home/core.nix.org | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/macos.local/.flake/home/core.nix.org b/macos.local/.flake/home/core.nix.org new file mode 100644 index 0000000..bb84514 --- /dev/null +++ b/macos.local/.flake/home/core.nix.org @@ -0,0 +1,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 |