This commit is contained in:
Grisha Shipunov 2025-02-18 09:54:31 +01:00
parent e513320653
commit b6731802a8
3 changed files with 27 additions and 6 deletions

View file

@ -1,11 +1,15 @@
{ lib, pkgs, ... }: { { lib, pkgs, ... }:
{
imports = [ imports = [
./mullvad.nix ./mullvad.nix
./dumpdvb.nix ./dumpdvb.nix
./zw.nix ./zw.nix
]; ];
environment.systemPackages = with pkgs; [ iwgtk impala ]; environment.systemPackages = with pkgs; [
iwgtk
impala
];
# kick out networkmanager # kick out networkmanager
networking.networkmanager.enable = lib.mkForce false; networking.networkmanager.enable = lib.mkForce false;
@ -48,8 +52,12 @@
DHCP = "yes"; DHCP = "yes";
IPv6AcceptRA = true; IPv6AcceptRA = true;
}; };
dhcpV4Config = { RouteMetric = 666; }; dhcpV4Config = {
dhcpV6Config = { RouteMetric = 666; }; RouteMetric = 666;
};
dhcpV6Config = {
RouteMetric = 666;
};
}; };
"wlan-uplink" = { "wlan-uplink" = {
matchConfig.Name = "wlan0"; matchConfig.Name = "wlan0";

View file

@ -51,7 +51,15 @@
whois whois
mtr mtr
] ]
++ (if config.networking.hostName == "toaster" then [ gitFull git-lfs ] else [ git ]); ++ (
if config.networking.hostName == "toaster" then
[
gitFull
git-lfs
]
else
[ git ]
);
environment.variables = environment.variables =
let let

View file

@ -27,7 +27,12 @@
twitter-color-emoji twitter-color-emoji
iosevka-bin iosevka-bin
cozette cozette
(nerdfonts.override { fonts = [ "Hack" "3270" ]; }) (nerdfonts.override {
fonts = [
"Hack"
"3270"
];
})
]; ];
fonts.enableDefaultPackages = true; fonts.enableDefaultPackages = true;