mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
32 lines
506 B
Nix
32 lines
506 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
imports = [
|
|
./programs.nix
|
|
];
|
|
|
|
nix = {
|
|
package = pkgs.nix;
|
|
settings = {
|
|
experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
"ca-derivations"
|
|
];
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
git.enable = true;
|
|
};
|
|
|
|
home = {
|
|
username = "gaming";
|
|
homeDirectory = "/home/${config.home.username}";
|
|
stateVersion = "24.05";
|
|
sessionVariables = {
|
|
FLAKE = "$HOME/Projects/dotfiles";
|
|
};
|
|
};
|
|
}
|