Fix warnings after switching to 23.05
This commit is contained in:
parent
7af5ec9bfa
commit
006a408043
5 changed files with 19 additions and 18 deletions
|
|
@ -57,7 +57,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
devShell = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
buildInputs = (with pkgs; [
|
buildInputs = (with pkgs; [
|
||||||
black
|
black
|
||||||
just
|
just
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,5 @@
|
||||||
lib.mkIf (config.myConfig.bootloader == "grub2") {
|
lib.mkIf (config.myConfig.bootloader == "grub2") {
|
||||||
boot.loader.grub = {
|
boot.loader.grub = {
|
||||||
enable = true;
|
enable = true;
|
||||||
version = 2;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
boot.cleanTmpDir = true;
|
boot.tmp.cleanOnBoot = true;
|
||||||
|
|
||||||
security.polkit.enable = true;
|
security.polkit.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -5,20 +5,22 @@
|
||||||
services.dnsmasq = {
|
services.dnsmasq = {
|
||||||
enable = true;
|
enable = true;
|
||||||
resolveLocalQueries = true;
|
resolveLocalQueries = true;
|
||||||
servers = [
|
settings = {
|
||||||
"127.0.0.1#9053"
|
server = [
|
||||||
"/lechner.zz/192.168.0.1"
|
"127.0.0.1#9053"
|
||||||
"/lab.fablab-nea.de/192.168.94.1"
|
"/lechner.zz/192.168.0.1"
|
||||||
];
|
"/lab.fablab-nea.de/192.168.94.1"
|
||||||
extraConfig = ''
|
];
|
||||||
no-resolv
|
no-resolv = true;
|
||||||
interface=lo
|
interface = "lo";
|
||||||
listen-address=::1
|
listen-address = [
|
||||||
listen-address=127.0.0.1
|
"::1"
|
||||||
bind-interfaces
|
"127.0.0.1"
|
||||||
dns-loop-detect
|
];
|
||||||
neg-ttl=5
|
bind-interfaces = true;
|
||||||
'';
|
dns-loop-detect = true;
|
||||||
|
neg-ttl = 5;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
passwordAuthentication = false;
|
settings.PasswordAuthentication = false;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue