sequoia: Remove

This VM no longer exists.
This commit is contained in:
Spotlight 2025-04-23 01:36:50 -05:00
parent 22ba870a9d
commit 508dc46d17
Signed by: spotlight
GPG key ID: 874AA355B3209BDC
3 changed files with 6 additions and 63 deletions

12
flake.lock generated
View file

@ -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": {

View file

@ -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);
};

View file

@ -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;
};
}