From 5eb63082b564c2b44ff1858a7894d055e006043a Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Thu, 26 Sep 2024 17:59:09 -0500 Subject: modularize config --- nixos/.flake/home/core.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 nixos/.flake/home/core.nix (limited to 'nixos/.flake/home/core.nix') diff --git a/nixos/.flake/home/core.nix b/nixos/.flake/home/core.nix new file mode 100644 index 0000000..cfba834 --- /dev/null +++ b/nixos/.flake/home/core.nix @@ -0,0 +1,17 @@ +{ 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; +} -- cgit v1.2.3