blob: bb3062ebd49be90e88a5fb1042f4df648aa1a033 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
inputs,
inputs',
...
}: {
imports = [
./seth.nix
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {inherit inputs inputs';};
};
}
|