Remove unused keys
Dependencies
- [2]
5FI47NSAMigrate to home-manager - [3]
DGVQN777Disable automatic timezone setup - [4]
6CCHC4ILChange default font to Intel One Mono - [5]
QPPSJBANDisable wait-for-online boot service - [6]
6I2HQYU2Add basic flake configuration
Change contents
- edit in configuration.nix at line 73
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - edit in configuration.nix at line 74
# Configure network proxy if necessary# networking.proxy.default = "http://user:password@proxy:port/";# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; - replacement in configuration.nix at line 128
# Enable sound with pipewire.#sound.enable = true;# Enable pulseaudio - edit in configuration.nix at line 138
# If you want to use JACK applications, uncomment this#jack.enable = true; - edit in configuration.nix at line 139
# Enable touchpad support (enabled default in most desktopManager).# services.xserver.libinput.enable = true; - edit in configuration.nix at line 152
# Firefox nightly overlay# nixpkgs.overlays =# let# moz-rev = "master";# moz-url = builtins.fetchTarball { url = "https://github.com/mozilla/nixpkgs-mozilla/archive/${moz-rev}.tar.gz";};# nightlyOverlay = (import "${moz-url}/firefox-overlay.nix");# in [# nightlyOverlay# (import "${fetchTarball "https://github.com/nix-community/fenix/archive/main.tar.gz"}/overlay.nix")# ];# List packages installed in system profile. To search, run:# $ nix search wgetenvironment.systemPackages = with pkgs; [# latest.firefox-nightly-bin]; - edit in configuration.nix at line 162
# Some programs need SUID wrappers, can be configured further or are# started in user sessions.# programs.mtr.enable = true;# programs.gnupg.agent = {# enable = true;# enableSSHSupport = true;# };# List services that you want to enable: - edit in configuration.nix at line 163
# Enable the OpenSSH daemon.services.openssh = {enable = true;# passwordAuthentication = false; # default true# permitRootLogin = "yes";# challengeResponseAuthentication = false;};# Open ports in the firewall.# networking.firewall.allowedTCPPorts = [ ... ];# networking.firewall.allowedUDPPorts = [ ... ];# Or disable the firewall altogether.# networking.firewall.enable = false;