This commit is contained in:
iofq 2023-12-24 00:33:04 -06:00
parent fe3dde6667
commit d37834a164
30 changed files with 245 additions and 179 deletions

12
home-manager/home.nix Executable file
View file

@ -0,0 +1,12 @@
{ inputs, pkgs, ... }:
{
programs.home-manager.enable = true;
nix = {
registry.nixpkgs.flake = inputs.nixpkgs;
};
home = {
stateVersion = "22.11";
};
imports = [ ./shared/programs/min.nix ];
xdg.enable = true;
}