aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/home/core.org
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/.flake/home/core.org')
-rw-r--r--nixos/.flake/home/core.org22
1 files changed, 22 insertions, 0 deletions
diff --git a/nixos/.flake/home/core.org b/nixos/.flake/home/core.org
new file mode 100644
index 0000000..af108cf
--- /dev/null
+++ b/nixos/.flake/home/core.org
@@ -0,0 +1,22 @@
+#+title: Core Home Configuration
+
+Set up home manager for my user account and import submodules.
+#+begin_src nix :tangle ~/.flake/home/core.nix :mkdirp yes
+ { config, pkgs, ... }:
+
+ {
+ imports = [
+ ./cursor.nix
+ ./fonts.nix
+ ./hyprland.nix
+ ./programs/core.nix
+ ./services/core.nix
+ ];
+
+ home.username = "jane";
+ home.homeDirectory = "/home/jane";
+
+ home.stateVersion = "24.05";
+ programs.home-manager.enable = true;
+ }
+#+end_src