43 lines
705 B
Nix
43 lines
705 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./nvim/neovim.nix
|
|
./plasma.nix
|
|
];
|
|
|
|
nixpkgs = {
|
|
overlays = [
|
|
outputs.overlays.additions
|
|
outputs.overlays.modifications
|
|
outputs.overlays.unstable-packages
|
|
];
|
|
config = {
|
|
allowUnfree = true;
|
|
allowUnfreePredicate = _: true;
|
|
};
|
|
};
|
|
|
|
home = {
|
|
username = "horseman";
|
|
homeDirectory = "/home/horseman";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "KoenDR06";
|
|
userEmail = "koen.de.ruiter@hotmail.com";
|
|
};
|
|
|
|
programs.gh.enable = true;
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
home.stateVersion = "23.05";
|
|
}
|