From 508dc46d17bf3c3b00b7883b646a1e951c3baad9 Mon Sep 17 00:00:00 2001 From: Spotlight Date: Wed, 23 Apr 2025 01:36:50 -0500 Subject: [PATCH] sequoia: Remove This VM no longer exists. --- flake.lock | 12 ++++---- flake.nix | 18 ------------ hosts/darwin/sequoia/configuration.nix | 39 -------------------------- 3 files changed, 6 insertions(+), 63 deletions(-) delete mode 100644 hosts/darwin/sequoia/configuration.nix diff --git a/flake.lock b/flake.lock index 1591f9d..e613423 100644 --- a/flake.lock +++ b/flake.lock @@ -93,11 +93,11 @@ ] }, "locked": { - "lastModified": 1745272532, - "narHash": "sha256-+sFbKw1vFkulKYxsAbz84N0V/goSg808IgFh8iWe/As=", + "lastModified": 1745380081, + "narHash": "sha256-bUy25YkdRfdWPxSyx22igWi6g3rd3HXKFg+yL4dfBPY=", "owner": "nix-community", "repo": "home-manager", - "rev": "81541ea36d1fead4be7797e826ee325d4c19308b", + "rev": "1d0e13904bd8c444ab1595f686ede5eff377e881", "type": "github" }, "original": { @@ -143,11 +143,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1744932701, - "narHash": "sha256-fusHbZCyv126cyArUwwKrLdCkgVAIaa/fQJYFlCEqiU=", + "lastModified": 1745234285, + "narHash": "sha256-GfpyMzxwkfgRVN0cTGQSkTC0OHhEkv3Jf6Tcjm//qZ0=", "owner": "nixos", "repo": "nixpkgs", - "rev": "b024ced1aac25639f8ca8fdfc2f8c4fbd66c48ef", + "rev": "c11863f1e964833214b767f4a369c6e6a7aba141", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 3543f87..de0999b 100644 --- a/flake.nix +++ b/flake.nix @@ -233,24 +233,6 @@ ]; }; - darwinConfigurations."sequoia" = nix-darwin.lib.darwinSystem { - modules = [ - # System-wide configuration - ./hosts/darwin/sequoia/configuration.nix - # Our provided home-manager configuration - home-manager.darwinModules.home-manager - { - nixpkgs.overlays = [ self.overlays.default ]; - home-manager = { - useGlobalPkgs = true; - useUserPackages = true; - users.spot = import ./home/home.nix; - extraSpecialArgs = { desktop = true; gpg = true; }; - }; - } - ]; - }; - # Lastly, ensure a formatter is available for all systems. formatter = allSystems (system: nixpkgs.legacyPackages.${system}.nixpkgs-fmt); }; diff --git a/hosts/darwin/sequoia/configuration.nix b/hosts/darwin/sequoia/configuration.nix deleted file mode 100644 index 0eb8cc7..0000000 --- a/hosts/darwin/sequoia/configuration.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ lib, pkgs, system, ... }: { - environment = { - # We'll use Vim globally. - systemPackages = [ - pkgs.vim - ]; - variables.EDITOR = "${pkgs.vim}/bin/vim"; - }; - - # Auto upgrade the nix package. - nix = { - # Keep the latest version of Nix. - package = pkgs.nix; - settings = { - # Necessary for using flakes on this system. - experimental-features = "nix-command flakes"; - - # Include Garnix - substituters = [ "https://cache.garnix.io" ]; - trusted-public-keys = [ "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" ]; - }; - }; - - # Create /etc/zshrc that loads the nix-darwin environment. - programs.zsh.enable = true; - - # Used for backwards compatibility, please read the changelog before changing. - # $ darwin-rebuild changelog - system.stateVersion = 6; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-darwin"; - - # Our singular user! - users.users.spot = { - description = "Spotlight Deveaux"; - home = "/Users/spot"; - shell = pkgs.zsh; - }; -}