Setup iwd for nixos and added discord package

This commit is contained in:
Random936 2024-05-26 13:03:55 -07:00
parent 0f538e9215
commit aaad24982b
2 changed files with 9 additions and 2 deletions

View File

@ -14,6 +14,7 @@
home.packages = with pkgs; [
feh
dconf
discord
microsoft-edge
nextcloud-client
bitwarden

View File

@ -16,9 +16,15 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# General setup
# Networking
networking.hostName = "randomctf"; # Define your hostname.
networking.networkmanager.enable = true;
networking.wireless.iwd.enable = true;
networking.networkmanager = {
enable = true;
wifi.backend = "iwd";
};
# General setup
time.timeZone = "America/Los_Angeles";
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {