From e6f28a3b6e148d5d6b1526c7b9838bbc77003fe3 Mon Sep 17 00:00:00 2001 From: Jimbo Date: Fri, 20 Sep 2024 05:46:15 -0400 Subject: [PATCH] Simplify comments --- nixos/base.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/nixos/base.nix b/nixos/base.nix index 559e1fc..64494f9 100644 --- a/nixos/base.nix +++ b/nixos/base.nix @@ -1,5 +1,4 @@ -# This is your system's configuration file. -# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix) +# This is your system's configuration file (it replaces /etc/nixos/configuration.nix) {inputs, outputs, lib, config, pkgs, ...}: { # You can import other NixOS modules here imports = [ @@ -10,7 +9,6 @@ nixpkgs = { # You can add overlays here overlays = [ - # Add overlays your own flake exports (from overlays and pkgs dir): outputs.overlays.additions outputs.overlays.selfsuper outputs.overlays.finalprev @@ -27,9 +25,7 @@ # Enable flakes and garbage collection nix = { settings = { - # Enable flakes and new 'nix' command experimental-features = "nix-command flakes"; - # Deduplicate and optimize nix store auto-optimise-store = true; }; gc = {