chore: add mkAfter
This commit is contained in:
parent
4ce14e7d68
commit
4d4555c2ac
1 changed files with 3 additions and 3 deletions
|
@ -1,12 +1,12 @@
|
||||||
{ config, pkgs, lib, inputs, fontSize ? null, ... }:
|
{ config, pkgs, lib, inputs, fontSize ? null, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
nixpkgs.overlays = (import ../../overlays) ++ [
|
nixpkgs.overlays = lib.mkAfter ((import ../../overlays) ++ [
|
||||||
inputs.wired.overlays.default
|
inputs.wired.overlays.default
|
||||||
inputs.myneovim.overlays.default
|
inputs.myneovim.overlays.default
|
||||||
inputs.vnetod.overlay
|
inputs.vnetod.overlay
|
||||||
inputs.nil.overlays.default
|
inputs.nil.overlays.default
|
||||||
];
|
]);
|
||||||
|
|
||||||
users.users.jan = {
|
users.users.jan = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
@ -33,5 +33,5 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nix.settings.trusted-users = lib.mkForce [ "root" "jan" ];
|
nix.settings.trusted-users = lib.mkAfter [ "jan" ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue