diff --git a/flake.nix b/flake.nix index 178f18f..27018a0 100644 --- a/flake.nix +++ b/flake.nix @@ -100,6 +100,7 @@ in { darwinConfigurations = { + AirPuppet = darwinHostConfig "x86_64-darwin" "AirPuppet" "gene"; Blue-Rock = darwinHostConfig "x86_64-darwin" "Blue-Rock" "gene.liverman"; }; diff --git a/modules/home-manager/hosts/AirPuppet/gene.nix b/modules/home-manager/hosts/AirPuppet/gene.nix new file mode 100644 index 0000000..12d0ec2 --- /dev/null +++ b/modules/home-manager/hosts/AirPuppet/gene.nix @@ -0,0 +1,9 @@ +{ pkgs, genebean-omp-themes, ... }: { + home.stateVersion = "23.11"; + imports = [ + ../../common/all-cli.nix + ../../common/all-gui.nix + ../../common/all-darwin.nix + ]; + +} diff --git a/modules/hosts/darwin/AirPuppet/default.nix b/modules/hosts/darwin/AirPuppet/default.nix new file mode 100644 index 0000000..1913280 --- /dev/null +++ b/modules/hosts/darwin/AirPuppet/default.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: { + system.stateVersion = 4; + + homebrew = { + # used to have tap sandreas/tap and program m4b-tool + masApps = { + "HomeCam" = 1292995895; + }; + }; +}