16 lines
301 B
Nix
Executable file
16 lines
301 B
Nix
Executable file
{inputs, ...}: {
|
|
programs.home-manager.enable = true;
|
|
nix = {
|
|
registry.nixpkgs.flake = inputs.nixpkgs;
|
|
};
|
|
home = {
|
|
stateVersion = "22.11";
|
|
file = {
|
|
".local/bin" = {
|
|
source = ../bin;
|
|
};
|
|
};
|
|
};
|
|
imports = [./shared/programs/min.nix];
|
|
xdg.enable = true;
|
|
}
|