move home-manager config to subdirectory

This commit is contained in:
Daniel Olsen
2024-08-17 03:17:40 +02:00
parent 08930ba021
commit a6f2ac0868
23 changed files with 1 additions and 7 deletions

19
home/config.nix Normal file
View File

@@ -0,0 +1,19 @@
let
unstable = import <nixos-unstable> { };
stable = import <nixpkgs> {};
nur = import <nur> { pkgs = unstable; };
in
{
allowUnfree = true;
packageOverrides = pkgs: {
unstable = unstable;
nur = nur;
dan = import <dan> {
pkgs = unstable;
};
danstable = <dan> {
pkgs = stable;
};
};
}