sequoia: Remove
This VM no longer exists.
This commit is contained in:
parent
22ba870a9d
commit
508dc46d17
3 changed files with 6 additions and 63 deletions
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue