diff options
| author | Fuwn <[email protected]> | 2024-10-03 01:20:30 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-03 01:20:30 -0700 |
| commit | 3696ffe7df5814548c8e5590ba6c6e7e369a3416 (patch) | |
| tree | cd24f0b696819a2af7bd9e177e12bdb754bba8f5 /home/ebisu/core | |
| parent | home: configure multi-host home setup (diff) | |
| download | nixos-config-3696ffe7df5814548c8e5590ba6c6e7e369a3416.tar.xz nixos-config-3696ffe7df5814548c8e5590ba6c6e7e369a3416.zip | |
home: core module
Diffstat (limited to 'home/ebisu/core')
| -rw-r--r-- | home/ebisu/core/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/home/ebisu/core/default.nix b/home/ebisu/core/default.nix new file mode 100644 index 0000000..fde9725 --- /dev/null +++ b/home/ebisu/core/default.nix @@ -0,0 +1,17 @@ +{ config, pkgs, ... }: +{ + programs.home-manager.enable = true; + nix.package = pkgs.nix; + + home = { + username = "ebisu"; + homeDirectory = "/home/${config.home.username}"; + stateVersion = "24.05"; + + sessionPath = [ + "${config.home.homeDirectory}/.local/bin" + "${config.home.homeDirectory}/.local/share/cargo/bin" + "${config.xdg.configHome}/.emacs.d/bin" + ]; + }; +} |