move home-manager config to subdirectory
This commit is contained in:
19
home/config.nix
Normal file
19
home/config.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user