From 0e20523cf11cc72bf59e2e2657e15e8441e8f26f Mon Sep 17 00:00:00 2001 From: rogueking Date: Tue, 19 Aug 2025 11:34:43 -0700 Subject: [PATCH] darwin fixes --- hosts/buildbox/configuration.nix | 4 ---- hosts/eva-02/configuration.nix | 8 +++----- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/hosts/buildbox/configuration.nix b/hosts/buildbox/configuration.nix index 5172376..1759d1e 100644 --- a/hosts/buildbox/configuration.nix +++ b/hosts/buildbox/configuration.nix @@ -85,10 +85,6 @@ variant = ""; }; - # Enable VSCode Server - services.vscode-server.enable = true; - - # Enable CUPS to print documents. services.printing.enable = false; diff --git a/hosts/eva-02/configuration.nix b/hosts/eva-02/configuration.nix index 43c6470..c3d8156 100644 --- a/hosts/eva-02/configuration.nix +++ b/hosts/eva-02/configuration.nix @@ -56,17 +56,15 @@ # services.xserver.libinput.enable = true; # Define a user account. Don't forget to set a password with ‘passwd’. - programs.zsh.enable = true; - users.users.rogueking = { + programs.zsh.enable = true; + users.users.rogueking = { # isNormalUser = true; description = "rogueking"; - extraGroups = [ "admin" "staff" "wheel" "docker" ]; + # extraGroups = [ "admin" "staff" "wheel" "docker" ]; shell = pkgs.zsh; - #packages = [ inputs.home-manager.packages.${pkgs.system}.default ]; packages = with pkgs; [ #apps #cli - # thunderbird ]; };