blob: 25f3f2e80b877777342dbe79067af92dd3e03a41 (
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
|
#+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 = [
./clang-format.nix
./cursor.nix
./fonts.nix
./hyprland.nix
./programs/core.nix
./scripts.nix
./services/core.nix
];
home.username = "jane";
home.homeDirectory = "/home/jane";
home.file.".wallpaper".source = ./.wallpaper;
home.stateVersion = "24.05";
programs.home-manager.enable = true;
}
#+end_src
|