From ae6e533365a2dfcf0bf7596c9382f84937225c4b Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Mon, 27 Oct 2025 18:28:41 +0100 Subject: [PATCH] add 1k5 --- hosts/1k5.nix | 15 +++++++++++++++ hosts/default.nix | 1 + 2 files changed, 16 insertions(+) create mode 100644 hosts/1k5.nix diff --git a/hosts/1k5.nix b/hosts/1k5.nix new file mode 100644 index 0000000..3538ae3 --- /dev/null +++ b/hosts/1k5.nix @@ -0,0 +1,15 @@ +{ + username = "nicco"; + hostName = "1k5"; + platform = "aarch64-darwin"; + sshKey = "1k5"; + + extras = { + casks = [ + "notion" + ]; + pkgs = + pkgs: with pkgs; [ + ]; + }; +} diff --git a/hosts/default.nix b/hosts/default.nix index b4214fd..a6d8814 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -1,4 +1,5 @@ [ (import ./mac14.nix) (import ./ordio.nix) + (import ./1k5.nix) ]