[tarro] Remove laptop config

This commit is contained in:
2025-03-27 15:56:34 -07:00
parent cd6d9a96a8
commit 133a3f8207
4 changed files with 20 additions and 92 deletions

View File

@@ -31,28 +31,27 @@
}; };
}; };
outputs = { self, nixpkgs, ... }@inputs: { outputs =
nixosConfigurations = { { self, nixpkgs, ... }@inputs:
drew-desktop = (import ./system/hosts/drew-desktop) { {
inherit inputs; nixosConfigurations = {
inherit self; drew-desktop = (import ./system/hosts/drew-desktop) {
inherit nixpkgs; inherit inputs;
inherit self;
inherit nixpkgs;
};
mcp = (import ./system/hosts/mcp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
}; };
mcp = (import ./system/hosts/mcp) { darwinConfigurations = {
inherit inputs; # Removed. See 7c0130f7271f6949e60b9ab59950788d523a9c4d for when the
inherit self; # last one was removed.
inherit nixpkgs; };
features = {
development = (import ./home-manager/features/development/development.nix);
}; };
}; };
darwinConfigurations = {
DGVGYQLQP5 = (import ./system/hosts/tarro-mbp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
};
features = {
development = (import ./home-manager/features/development/development.nix);
};
};
} }

View File

@@ -1,29 +0,0 @@
{ config, pkgs, inputs, ... }:
{
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages =
[ pkgs.vim
];
# Necessary for using flakes on this system.
nix.settings.experimental-features = "nix-command flakes";
# Enable alternative shell support in nix-darwin.
programs.zsh.enable = true;
# Set Git commit hash for darwin-version.
system.configurationRevision = inputs.self.rev or inputs.self.dirtyRev or null;
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 6;
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "aarch64-darwin";
users.users.drew = {
name = "drew";
home = "/Users/drew";
};
}

View File

@@ -1,16 +0,0 @@
{ inputs, self, ... }:
inputs.nix-darwin.lib.darwinSystem {
modules = [
./configuration.nix
inputs.home-manager.darwinModules.home-manager
{
home-manager.users.drew = import ./drew.nix;
home-manager.useGlobalPkgs = true;
home-manager.extraSpecialArgs = { inherit inputs; };
}
];
specialArgs = {
inherit inputs;
inherit self;
};
}

View File

@@ -1,26 +0,0 @@
{ pkgs, ... }:
{
imports = [
../../../home-manager/features/kubernetes.nix
../../../home-manager/features/macos
../../../home-manager/features/nix.nix
../../../home-manager/features/terminal.nix
../../../home-manager/features/development/development.nix
../../../home-manager/features/development/macos.nix
../../../home-manager/features/development/rust.nix
];
home.username = "drew";
home.homeDirectory = "/Users/drew";
home.packages = with pkgs; [
nodejs_22
];
home.stateVersion = "24.11";
programs.git = {
userName = "Drew Haven";
userEmail = "drew.haven@tarro.com";
};
}