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; [
|
||||
black
|
||||
just
|
||||
|
|
|
|||
|
|
@ -3,6 +3,5 @@
|
|||
lib.mkIf (config.myConfig.bootloader == "grub2") {
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
version = 2;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
];
|
||||
|
||||
config = {
|
||||
boot.cleanTmpDir = true;
|
||||
boot.tmp.cleanOnBoot = true;
|
||||
|
||||
security.polkit.enable = true;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
passwordAuthentication = false;
|
||||
settings.PasswordAuthentication = false;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue