Compare commits
No commits in common. "cecfd15fd233caa11f870f839c2aee1726bc34eb" and "39e2eefd9881af3e4d6464cb5b963a215375c5fc" have entirely different histories.
cecfd15fd2
...
39e2eefd98
2 changed files with 14 additions and 27 deletions
|
@ -6,24 +6,15 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (inputs) quickshell;
|
inherit (inputs) quickshell;
|
||||||
|
|
||||||
inherit (lib.modules) mkIf;
|
|
||||||
inherit (lib.options) mkEnableOption;
|
|
||||||
|
|
||||||
cfg = config.modules.theming.quickshell;
|
|
||||||
in {
|
in {
|
||||||
options.modules.theming.quickshell.enable = mkEnableOption "quickshell";
|
environment.systemPackages = with pkgs; [
|
||||||
|
quickshell.packages.x86_64-linux.default
|
||||||
|
qt6.qtimageformats
|
||||||
|
qt6.qt5compat
|
||||||
|
qt6.qtmultimedia
|
||||||
|
qt6.qtdeclarative
|
||||||
|
];
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
# taken from outfoxxed.
|
||||||
environment.systemPackages = with pkgs; [
|
qt.enable = true;
|
||||||
quickshell.packages.x86_64-linux.default
|
|
||||||
qt6.qtimageformats
|
|
||||||
qt6.qt5compat
|
|
||||||
qt6.qtmultimedia
|
|
||||||
qt6.qtdeclarative
|
|
||||||
];
|
|
||||||
|
|
||||||
# taken from outfoxxed.
|
|
||||||
qt.enable = true;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,21 +18,17 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
nameservers = [
|
nameservers = [
|
||||||
# I have choosen Mullvad DNS as my standard DNS provider,
|
# quad9 DNS
|
||||||
# as Quad9 at some point stopped resolving my universitie's IP address.
|
"9.9.9.9"
|
||||||
# Furthermore, Mullvad has a pretty good reputation when it comes to privacy
|
"2620::fe::fe"
|
||||||
"194.242.2.4"
|
|
||||||
"2a07:e340::4"
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
services.resolved = {
|
services.resolved = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dnssec = "false";
|
dnssec = "false";
|
||||||
dnsovertls = "opportunistic";
|
dnsovertls = "opportunistic";
|
||||||
fallbackDns = [
|
# quad9 dns
|
||||||
"194.242.2.4"
|
fallbackDns = ["9.9.9.9" "2620::fe::fe"];
|
||||||
"2a07:e340::4"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
users.users.${username}.extraGroups = ["networkmanager"];
|
users.users.${username}.extraGroups = ["networkmanager"];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue