[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: {
nixosConfigurations = {
drew-desktop = (import ./system/hosts/drew-desktop) {
inherit inputs;
inherit self;
inherit nixpkgs;
outputs =
{ self, nixpkgs, ... }@inputs:
{
nixosConfigurations = {
drew-desktop = (import ./system/hosts/drew-desktop) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
mcp = (import ./system/hosts/mcp) {
inherit inputs;
inherit self;
inherit nixpkgs;
};
};
mcp = (import ./system/hosts/mcp) {
inherit inputs;
inherit self;
inherit nixpkgs;
darwinConfigurations = {
# Removed. See 7c0130f7271f6949e60b9ab59950788d523a9c4d for when the
# last one was removed.
};
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);
};
};
}