commit 2fd8a013946b42cf92d38e7177cb1967f6bec8c1
parent be8da212bf520b0d0b3da66fb1d90d9b01a6c318
Author: Leah (ctucx) <git@ctu.cx>
Date: Sat, 15 Jul 2023 14:22:03 +0200
parent be8da212bf520b0d0b3da66fb1d90d9b01a6c318
Author: Leah (ctucx) <git@ctu.cx>
Date: Sat, 15 Jul 2023 14:22:03 +0200
machines: remove `blechkaestchen`
3 files changed, 0 insertions(+), 28 deletions(-)
diff --git a/configurations/common/syncthing-config.nix b/configurations/common/syncthing-config.nix @@ -4,7 +4,6 @@ let devices = { #mobile devices blechkasten.id = "HGPWBVY-RD4JKBQ-X3V53IB-KRVDXEQ-4YLN5F2-WPPSMYR-SOXGTY6-IDFOAAC"; - blechkaestchen.id = "3EODMSO-2TZ5XLY-7DEN2J4-KBJHBG7-77Z2SUP-DFILGXB-AFZPQ4K-NSVZNAC"; iphone.id = "3SM3LJV-XMHYW2D-MU5WQ3T-KGYUJOI-LXOL6YI-BSVZ2B5-QJ6GVXN-MPWMKQ7"; ipad.id = "WVQIZTE-RULPSEW-IZF4UWI-Q2LX3WJ-MXDUZI3-DF5YHXS-CORBZ27-BCA6XAR";
diff --git a/flake.nix b/flake.nix @@ -17,19 +17,6 @@ }; modules = [ ./machines/blechkasten/darwin-configuration.nix ]; }; - - blechkaestchen = inputs.darwin.lib.darwinSystem rec { - system = "x86_64-darwin"; - pkgs = import inputs.nixpkgsDarwin { - inherit system; - overlays = overlays ++ [(import ./pkgs/darwin)]; - }; - specialArgs = { - currentSystem = system; - inherit inputs; - }; - modules = [ ./machines/blechkaestchen/darwin-configuration.nix ]; - }; }; colmena = {
diff --git a/machines/blechkaestchen/darwin-configuration.nix b/machines/blechkaestchen/darwin-configuration.nix @@ -1,14 +0,0 @@ -{ config, pkgs, lib, ... }: - -{ - imports = [ - ../../configurations/common - ]; - - networking.hostName = "blechkaestchen"; - networking.computerName = config.networking.hostName; - - home-manager.users.leah.home.stateVersion = "22.11"; - system.stateVersion = 4; - -}