Compare commits

..

No commits in common. "cecfd15fd233caa11f870f839c2aee1726bc34eb" and "39e2eefd9881af3e4d6464cb5b963a215375c5fc" have entirely different histories.

2 changed files with 14 additions and 27 deletions

View file

@ -6,15 +6,7 @@
...
}: let
inherit (inputs) quickshell;
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption;
cfg = config.modules.theming.quickshell;
in {
options.modules.theming.quickshell.enable = mkEnableOption "quickshell";
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
quickshell.packages.x86_64-linux.default
qt6.qtimageformats
@ -25,5 +17,4 @@ in {
# taken from outfoxxed.
qt.enable = true;
};
}

View file

@ -18,21 +18,17 @@ in {
};
nameservers = [
# I have choosen Mullvad DNS as my standard DNS provider,
# as Quad9 at some point stopped resolving my universitie's IP address.
# Furthermore, Mullvad has a pretty good reputation when it comes to privacy
"194.242.2.4"
"2a07:e340::4"
# quad9 DNS
"9.9.9.9"
"2620::fe::fe"
];
};
services.resolved = {
enable = true;
dnssec = "false";
dnsovertls = "opportunistic";
fallbackDns = [
"194.242.2.4"
"2a07:e340::4"
];
# quad9 dns
fallbackDns = ["9.9.9.9" "2620::fe::fe"];
};
users.users.${username}.extraGroups = ["networkmanager"];