17 lines
305 B
Nix
Executable file
17 lines
305 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;
|
|
}
|