mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
23 lines
352 B
Nix
23 lines
352 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [
|
|
./cli
|
|
./programs.nix
|
|
./ssh_config.nix
|
|
];
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
git.enable = true;
|
|
};
|
|
|
|
home = {
|
|
username = "elise";
|
|
homeDirectory = "/home/${config.home.username}";
|
|
stateVersion = "24.05";
|
|
sessionVariables = {
|
|
FLAKE = "$HOME/dotfiles";
|
|
};
|
|
};
|
|
}
|