fix localed, back to stateless networking
This commit is contained in:
parent
3884eb2f82
commit
4edfd251be
6 changed files with 16 additions and 7 deletions
|
@ -57,7 +57,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
i18n = {
|
||||||
|
defaultLocale = "en_US.UTF-8";
|
||||||
|
supportedLocales = [ "en_US.UTF-8" "nl_NL.UTF-8" "ru_RU.UTF-8" ];
|
||||||
|
};
|
||||||
|
|
||||||
# List services that you want to enable:
|
# List services that you want to enable:
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,6 @@
|
||||||
"plugdev"
|
"plugdev"
|
||||||
"dialout"
|
"dialout"
|
||||||
"bluetooth"
|
"bluetooth"
|
||||||
"networkmanager"
|
|
||||||
];
|
];
|
||||||
group = "users";
|
group = "users";
|
||||||
home = "/home/grue";
|
home = "/home/grue";
|
||||||
|
@ -85,7 +84,13 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.wireshark;
|
package = pkgs.wireshark;
|
||||||
};
|
};
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Amsterdam";
|
||||||
|
|
||||||
|
i18n = {
|
||||||
|
defaultLocale = "en_US.UTF-8";
|
||||||
|
supportedLocales = [ "all" ];
|
||||||
|
#supportedLocales = [ "en_US.UTF-8/UTF-8" "nl_NL.UTF-8/UTF-8" "ru_RU.UTF-8/UTF-8" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
programs.steam.enable = true;
|
programs.steam.enable = true;
|
||||||
|
|
|
@ -2,8 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
./network.nix
|
||||||
./stateful-networking.nix
|
|
||||||
./secrets.nix
|
./secrets.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||||
networking.useDHCP = lib.mkDefault true;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
networking.interfaces.enp53s0.useDHCP = lib.mkDefault true;
|
networking.interfaces.enp53s0.useDHCP = lib.mkDefault true;
|
||||||
networking.interfaces.wlp54s0.useDHCP = lib.mkDefault true;
|
networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
hostName = "microwave"; # Define your hostname.
|
hostName = "microwave"; # Define your hostname.
|
||||||
hostId = "7da4f1e6";
|
hostId = "7da4f1e6";
|
||||||
firewall.enable = true;
|
firewall.enable = true;
|
||||||
|
networkmanager.enable = false;
|
||||||
useNetworkd = true;
|
useNetworkd = true;
|
||||||
wireguard.enable = true;
|
wireguard.enable = true;
|
||||||
wireless.iwd = {
|
wireless.iwd = {
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
irssi
|
irssi
|
||||||
killall
|
killall
|
||||||
neovim
|
neovim
|
||||||
|
nvimpager
|
||||||
ripgrep
|
ripgrep
|
||||||
tealdeer
|
tealdeer
|
||||||
traceroute
|
traceroute
|
||||||
|
@ -53,7 +54,7 @@
|
||||||
# set appropriate environ variables
|
# set appropriate environ variables
|
||||||
environment.variables = {
|
environment.variables = {
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
PAGER = "less -F";
|
PAGER = "nvimpager";
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.shellAliases = {
|
environment.shellAliases = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue