mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
19 lines
267 B
Nix
19 lines
267 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [
|
|
./cli
|
|
./programs.nix
|
|
];
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
git.enable = true;
|
|
};
|
|
|
|
home = {
|
|
username = "megan";
|
|
homeDirectory = "/home/${config.home.username}";
|
|
stateVersion = "24.05";
|
|
};
|
|
}
|