Fix warnings after switching to 23.05

This commit is contained in:
Jakob Lechner 2023-05-23 15:25:48 +00:00
parent 7af5ec9bfa
commit 006a408043
No known key found for this signature in database
GPG key ID: 996082EFB5906C10
5 changed files with 19 additions and 18 deletions

View file

@ -57,7 +57,7 @@
};
};
};
devShell = pkgs.mkShell {
devShells.default = pkgs.mkShell {
buildInputs = (with pkgs; [
black
just

View file

@ -3,6 +3,5 @@
lib.mkIf (config.myConfig.bootloader == "grub2") {
boot.loader.grub = {
enable = true;
version = 2;
};
}

View file

@ -41,7 +41,7 @@
];
config = {
boot.cleanTmpDir = true;
boot.tmp.cleanOnBoot = true;
security.polkit.enable = true;
};

View file

@ -5,20 +5,22 @@
services.dnsmasq = {
enable = true;
resolveLocalQueries = true;
servers = [
"127.0.0.1#9053"
"/lechner.zz/192.168.0.1"
"/lab.fablab-nea.de/192.168.94.1"
];
extraConfig = ''
no-resolv
interface=lo
listen-address=::1
listen-address=127.0.0.1
bind-interfaces
dns-loop-detect
neg-ttl=5
'';
settings = {
server = [
"127.0.0.1#9053"
"/lechner.zz/192.168.0.1"
"/lab.fablab-nea.de/192.168.94.1"
];
no-resolv = true;
interface = "lo";
listen-address = [
"::1"
"127.0.0.1"
];
bind-interfaces = true;
dns-loop-detect = true;
neg-ttl = 5;
};
};
};
}

View file

@ -1,6 +1,6 @@
{
services.openssh = {
enable = true;
passwordAuthentication = false;
settings.PasswordAuthentication = false;
};
}