mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 08:06:19 +02:00
systemd 254 arrived, switched back to sway
This commit is contained in:
parent
e7cb531d8b
commit
b81a7a669a
14 changed files with 96 additions and 36 deletions
|
@ -14,7 +14,15 @@
|
|||
useNetworkd = true;
|
||||
enableIPv6 = true;
|
||||
};
|
||||
services.resolved.dnssec = "true";
|
||||
services.resolved = {
|
||||
dnssec = "true";
|
||||
fallbackDns = [
|
||||
"9.9.9.9"
|
||||
"149.112.112.112"
|
||||
"2620:fe::fe"
|
||||
"2620:fe::9"
|
||||
];
|
||||
};
|
||||
systemd.network = {
|
||||
enable = true;
|
||||
networks."10-loopback" = {
|
||||
|
|
|
@ -49,7 +49,6 @@
|
|||
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
console = {
|
||||
font = "Lat2-Terminus16";
|
||||
keyMap = "dvorak";
|
||||
};
|
||||
|
||||
|
|
|
@ -8,7 +8,13 @@
|
|||
};
|
||||
services.resolved = {
|
||||
enable = true;
|
||||
dnssec = "yes";
|
||||
dnssec = "true";
|
||||
fallbackDns = [
|
||||
"9.9.9.9"
|
||||
"149.112.112.112"
|
||||
"2620:fe::fe"
|
||||
"2620:fe::9"
|
||||
];
|
||||
# make room for the adguard dns
|
||||
extraConfig = ''
|
||||
[Resolve]
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
];
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
# boot.initrd.systemd.additionalUpstreamUnits = [ "systemd-vconsole-setup.service" ];
|
||||
boot = {
|
||||
# Lanzaboote currently replaces the systemd-boot module.
|
||||
# This setting is usually set to true in configuration.nix
|
||||
|
@ -94,7 +95,8 @@
|
|||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
console = {
|
||||
keyMap = "dvorak";
|
||||
font = "Lat2-Terminus16";
|
||||
# font = "Lat2-Terminus16";
|
||||
# earlySetup = true;
|
||||
colors = let colors = config.home-manager.users.rouven.colorScheme.colors; in
|
||||
[
|
||||
colors.base00
|
||||
|
@ -129,6 +131,10 @@
|
|||
sound.enable = true;
|
||||
#hardware.pulseaudio.enable = true;
|
||||
hardware.bluetooth.enable = true;
|
||||
# hardware.opentabletdriver = {
|
||||
# enable = true;
|
||||
# daemon.enable = true;
|
||||
# };
|
||||
|
||||
security = {
|
||||
polkit.enable = true;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
enable = true;
|
||||
settings = {
|
||||
default_session = {
|
||||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --cmd river";
|
||||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --cmd sway";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -11,8 +11,16 @@
|
|||
owner = config.users.users.systemd-network.name;
|
||||
};
|
||||
};
|
||||
# allow downgrade since fritzbox at home doesn't support it (yet?)
|
||||
services.resolved.dnssec = "allow-downgrade";
|
||||
services.resolved = {
|
||||
fallbackDns = [
|
||||
"9.9.9.9"
|
||||
"149.112.112.112"
|
||||
"2620:fe::fe"
|
||||
"2620:fe::9"
|
||||
];
|
||||
# allow downgrade since fritzbox at home doesn't support it (yet?)
|
||||
dnssec = "allow-downgrade";
|
||||
};
|
||||
networking = {
|
||||
useNetworkd = true;
|
||||
hostName = "thinkpad";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue