Remove unused keys

finchie
Mar 6, 2024, 6:07 AM
6BVANT5SRIVGM3ZIUN3SKR5CHZN5VVC7W3FQVJPQN3ZFRBFY5ZLQC

Dependencies

  • [2] 5FI47NSA Migrate to home-manager
  • [3] DGVQN777 Disable automatic timezone setup
  • [4] 6CCHC4IL Change default font to Intel One Mono
  • [5] QPPSJBAN Disable wait-for-online boot service
  • [6] 6I2HQYU2 Add basic flake configuration

Change contents

  • edit in configuration.nix at line 73
    [3.6517][3.6517:6604]()
    # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
  • edit in configuration.nix at line 74
    [3.6605][3.6605:6784]()
    # 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
    [3.7821][3.7821:7877]()
    # Enable sound with pipewire.
    #sound.enable = true;
    [3.7821]
    [3.7877]
    # Enable pulseaudio
  • edit in configuration.nix at line 138
    [3.8107][3.8107:8191]()
    # If you want to use JACK applications, uncomment this
    #jack.enable = true;
  • edit in configuration.nix at line 139
    [3.8196][3.8196:8312]()
    # Enable touchpad support (enabled default in most desktopManager).
    # services.xserver.libinput.enable = true;
  • edit in configuration.nix at line 152
    [2.3978][3.8587:9190](),[3.8587][3.8587:9190]()
    # 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 wget
    environment.systemPackages = with pkgs; [
    # latest.firefox-nightly-bin
    ];
  • edit in configuration.nix at line 162
    [3.9402][3.9402:9667]()
    # 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
    [3.9668][3.9668:10095]()
    # 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;