From 19396dac8a86b05821e531266fd451e4c2c003c9 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Fri, 26 Apr 2024 23:02:16 -0400 Subject: [PATCH] removed unneeded comments --- src/system/machines/desktop/system.nix | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/system/machines/desktop/system.nix b/src/system/machines/desktop/system.nix index a2d6709..71022e7 100644 --- a/src/system/machines/desktop/system.nix +++ b/src/system/machines/desktop/system.nix @@ -2,7 +2,6 @@ { system.stateVersion = "22.11"; -# Users users.users = { ${config.user.name} = { isNormalUser = true; @@ -12,7 +11,6 @@ }; }; -# Nix nix = { channel.enable = false; package = pkgs.nixFlakes; @@ -28,7 +26,6 @@ }; }; -# Bootloader boot.loader = { timeout = null; grub = { @@ -48,19 +45,16 @@ pavucontrol ]; -# DE programs.sway = { enable = true; package = null; }; -# Fonts fonts.packages = with pkgs; [ terminus_font terminus-nerdfont ]; -# Audio services.pipewire = { enable = true; audio.enable = true; @@ -73,13 +67,11 @@ alsa.support32Bit = true; }; -# Sudo Options security.sudo = { wheelNeedsPassword = false; execWheelOnly = true; }; -# Locale time = { timeZone = "America/New_York"; hardwareClockInLocalTime = true; @@ -102,7 +94,6 @@ useXkbConfig = true; }; -# Networking networking = { hostName = "socrates"; useDHCP = lib.mkDefault true;