feat(pumo): add config for phone pumo

This commit is contained in:
2026-04-30 13:51:05 +02:00
parent 5b4ca2a13f
commit 5a15be813f
11 changed files with 143 additions and 15 deletions

View File

@@ -30,6 +30,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
mobile-nixos = {
url = "github:mobile-nixos/mobile-nixos";
flake = false; # It is not as a flake
};
opencode = {
url = "github:anomalyco/opencode/v1.3.15";
inputs.nixpkgs.follows = "nixpkgs";
@@ -85,6 +90,7 @@
nixpkgs,
flake-utils,
home-manager,
mobile-nixos,
srvos,
...
} @ inputs:
@@ -176,6 +182,14 @@
./hosts/naromk3/configuration.nix
];
};
pumo = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
inherit specialArgs;
modules = withSystemModules [
(import "${mobile-nixos}/lib/configuration.nix" {device = "oneplus-enchilada";})
./hosts/pumo
];
};
tilo = nixpkgs.lib.nixosSystem {
inherit specialArgs;
modules = withSystemModules ./hosts/tilo/configuration.nix;