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

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