23.11: get rid of most warnings
This commit is contained in:
parent
3c3758b852
commit
fb310f9e29
@ -283,7 +283,7 @@
|
|||||||
hooks = {
|
hooks = {
|
||||||
alejandra.enable = true;
|
alejandra.enable = true;
|
||||||
deadnix.enable = true;
|
deadnix.enable = true;
|
||||||
#statix.enable = true;
|
statix.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -32,8 +32,8 @@
|
|||||||
timeZone = "UTC";
|
timeZone = "UTC";
|
||||||
base = {
|
base = {
|
||||||
users.passwd = {
|
users.passwd = {
|
||||||
root.passwordFile = config.age.secrets.root-passwd-hash.path;
|
root.hashedPasswordFile = config.age.secrets.root-passwd-hash.path;
|
||||||
motiejus.passwordFile = config.age.secrets.motiejus-passwd-hash.path;
|
motiejus.hashedPasswordFile = config.age.secrets.motiejus-passwd-hash.path;
|
||||||
};
|
};
|
||||||
unitstatus = {
|
unitstatus = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -39,8 +39,8 @@ in {
|
|||||||
users = {
|
users = {
|
||||||
devEnvironment = true;
|
devEnvironment = true;
|
||||||
passwd = {
|
passwd = {
|
||||||
root.passwordFile = config.age.secrets.root-passwd-hash.path;
|
root.hashedPasswordFile = config.age.secrets.root-passwd-hash.path;
|
||||||
motiejus.passwordFile = config.age.secrets.motiejus-passwd-hash.path;
|
motiejus.hashedPasswordFile = config.age.secrets.motiejus-passwd-hash.path;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -42,8 +42,8 @@
|
|||||||
zfs.enable = true;
|
zfs.enable = true;
|
||||||
users = {
|
users = {
|
||||||
passwd = {
|
passwd = {
|
||||||
root.passwordFile = config.age.secrets.root-passwd-hash.path;
|
root.hashedPasswordFile = config.age.secrets.root-passwd-hash.path;
|
||||||
motiejus.passwordFile = config.age.secrets.motiejus-passwd-hash.path;
|
motiejus.hashedPasswordFile = config.age.secrets.motiejus-passwd-hash.path;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -57,8 +57,8 @@
|
|||||||
base = {
|
base = {
|
||||||
zfs.enable = true;
|
zfs.enable = true;
|
||||||
users.passwd = {
|
users.passwd = {
|
||||||
root.passwordFile = config.age.secrets.root-passwd-hash.path;
|
root.hashedPasswordFile = config.age.secrets.root-passwd-hash.path;
|
||||||
motiejus.passwordFile = config.age.secrets.motiejus-passwd-hash.path;
|
motiejus.hashedPasswordFile = config.age.secrets.motiejus-passwd-hash.path;
|
||||||
};
|
};
|
||||||
unitstatus = {
|
unitstatus = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -179,7 +179,7 @@
|
|||||||
|
|
||||||
locate = {
|
locate = {
|
||||||
enable = true;
|
enable = true;
|
||||||
locate = pkgs.plocate;
|
package = pkgs.plocate;
|
||||||
localuser = null;
|
localuser = null;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -14,7 +14,7 @@ in {
|
|||||||
passwd = lib.mkOption {
|
passwd = lib.mkOption {
|
||||||
type = attrsOf (submodule {
|
type = attrsOf (submodule {
|
||||||
options = {
|
options = {
|
||||||
passwordFile = lib.mkOption {
|
hashedPasswordFile = lib.mkOption {
|
||||||
type = nullOr path;
|
type = nullOr path;
|
||||||
default = null;
|
default = null;
|
||||||
};
|
};
|
||||||
@ -49,7 +49,7 @@ in {
|
|||||||
}
|
}
|
||||||
// lib.filterAttrs (
|
// lib.filterAttrs (
|
||||||
n: v:
|
n: v:
|
||||||
(n == "passwordFile" || n == "initialPassword") && v != null
|
(n == "hashedPasswordFile" || n == "initialPassword") && v != null
|
||||||
)
|
)
|
||||||
cfg.passwd.motiejus or {};
|
cfg.passwd.motiejus or {};
|
||||||
|
|
||||||
|
@ -120,7 +120,8 @@ in {
|
|||||||
guiPortStr = builtins.toString guiPort;
|
guiPortStr = builtins.toString guiPort;
|
||||||
in "${jakstIP}:${guiPortStr}";
|
in "${jakstIP}:${guiPortStr}";
|
||||||
|
|
||||||
extraOptions.gui.insecureAdminAccess = true;
|
settings = {
|
||||||
|
gui.insecureAdminAccess = true;
|
||||||
devices =
|
devices =
|
||||||
{}
|
{}
|
||||||
// (lib.optionalAttrs (config.networking.hostName == "vno1-oh2") {
|
// (lib.optionalAttrs (config.networking.hostName == "vno1-oh2") {
|
||||||
@ -186,4 +187,5 @@ in {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user