Simplify comments

This commit is contained in:
Jimbo 2024-09-20 05:46:15 -04:00
parent f34246f8fd
commit e6f28a3b6e

View file

@ -1,5 +1,4 @@
# This is your system's configuration file. # This is your system's configuration file (it replaces /etc/nixos/configuration.nix)
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
{inputs, outputs, lib, config, pkgs, ...}: { {inputs, outputs, lib, config, pkgs, ...}: {
# You can import other NixOS modules here # You can import other NixOS modules here
imports = [ imports = [
@ -10,7 +9,6 @@
nixpkgs = { nixpkgs = {
# You can add overlays here # You can add overlays here
overlays = [ overlays = [
# Add overlays your own flake exports (from overlays and pkgs dir):
outputs.overlays.additions outputs.overlays.additions
outputs.overlays.selfsuper outputs.overlays.selfsuper
outputs.overlays.finalprev outputs.overlays.finalprev
@ -27,9 +25,7 @@
# Enable flakes and garbage collection # Enable flakes and garbage collection
nix = { nix = {
settings = { settings = {
# Enable flakes and new 'nix' command
experimental-features = "nix-command flakes"; experimental-features = "nix-command flakes";
# Deduplicate and optimize nix store
auto-optimise-store = true; auto-optimise-store = true;
}; };
gc = { gc = {