Compare commits

...
Author SHA1 Message Date
kurogeek 026de56f32 mob next [ci-skip] [ci skip] [skip ci]
lastFile:machines/stellio/configuration.nix
2026-08-12 15:41:36 +07:00
kurogeek 9f83f6ccb7 mob next [ci-skip] [ci skip] [skip ci]
lastFile:flake.lock
2026-08-12 15:35:47 +07:00
kurogeek c0c513e779 mob next [ci-skip] [ci skip] [skip ci]
lastFile:flake.lock
2026-08-12 13:42:24 +07:00
4 changed files with 104 additions and 1 deletions
Generated
+65 -1
View File
@@ -497,6 +497,35 @@
"url": "https://gti.telent.net/dan/liminix" "url": "https://gti.telent.net/dan/liminix"
} }
}, },
"matthew-hardware": {
"inputs": {
"disko": [
"clan-core",
"disko"
],
"flake-parts": [
"flake-parts"
],
"nixpkgs": [
"nixpkgs"
],
"unf": "unf"
},
"locked": {
"lastModified": 1786458568,
"narHash": "sha256-8++Qfhef7Nh9/GznhNvXIPVlAgBJxXdLFf1olUDKviw=",
"ref": "mc/wip",
"rev": "c0bfea3848ad5caf9865380edc58d9115fdaf35b",
"revCount": 32,
"type": "git",
"url": "https://codeberg.org/matthewcroughan/matthew-hardware"
},
"original": {
"ref": "mc/wip",
"type": "git",
"url": "https://codeberg.org/matthewcroughan/matthew-hardware"
}
},
"microvm": { "microvm": {
"inputs": { "inputs": {
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
@@ -706,6 +735,22 @@
} }
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": {
"lastModified": 1780365719,
"narHash": "sha256-QfWfccTN+70ZQ4m2qlU9PiKfz2Yppq94058iJyARNwc=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "ffa10e26ae11d676b2db836259889f1f571cb14f",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1781359544, "lastModified": 1781359544,
"narHash": "sha256-iUuzKQcyXvopYDDzFpMK5eQKP3WIJExYny2kJtbgUcE=", "narHash": "sha256-iUuzKQcyXvopYDDzFpMK5eQKP3WIJExYny2kJtbgUcE=",
@@ -816,8 +861,9 @@
"home-manager": "home-manager", "home-manager": "home-manager",
"import-tree": "import-tree", "import-tree": "import-tree",
"liminix": "liminix", "liminix": "liminix",
"matthew-hardware": "matthew-hardware",
"nixos-images": "nixos-images", "nixos-images": "nixos-images",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_3",
"plasma-manager": "plasma-manager", "plasma-manager": "plasma-manager",
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
} }
@@ -985,6 +1031,24 @@
"type": "github" "type": "github"
} }
}, },
"unf": {
"inputs": {
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1779596435,
"narHash": "sha256-ztzeJVOQDhQtE0z9DwtSWL+OyoWKZrAD4gzRRvUP9ug=",
"ref": "refs/heads/main",
"rev": "4f5ab30ee524f09126b09f42f249c0aba756459d",
"revCount": 6,
"type": "git",
"url": "https://git.atagen.co/atagen/unf"
},
"original": {
"type": "git",
"url": "https://git.atagen.co/atagen/unf"
}
},
"yants": { "yants": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
+7
View File
@@ -51,6 +51,13 @@
inputs.nixos-unstable.follows = "nixpkgs"; inputs.nixos-unstable.follows = "nixpkgs";
inputs.nixos-stable.follows = "nixpkgs"; inputs.nixos-stable.follows = "nixpkgs";
}; };
matthew-hardware = {
url = "git+https://codeberg.org/matthewcroughan/matthew-hardware?ref=mc/wip";
inputs.flake-parts.follows = "flake-parts";
inputs.nixpkgs.follows = "nixpkgs";
inputs.disko.follows = "clan-core/disko";
};
}; };
outputs = outputs =
{ {
+26
View File
@@ -0,0 +1,26 @@
{ inputs, ... }:
{
imports = [
inputs.matthew-hardware.nixosModules.mt7986a-glinet-gl-mt6000
./hardware-configuration.nix
];
hardware.mt7986a-glinet-gl-mt6000.enable = true;
hardware.mt7986a-glinet-gl-mt6000.zealous = true;
hardware.mt7986a-glinet-gl-mt6000.image.repart.enable = true;
image.modules.sd-card = {
disabledModules = [
./hardware-configuration.nix
];
};
nixpkgs.hostPlatform = {
system = "aarch64-linux";
};
system.stateVersion = "26.11";
clan.core.sops.defaultGroups = [ "admins" ];
clan.core.settings.name = "stellio";
clan.core.settings.machine.description = "Flint-2 router";
}
@@ -0,0 +1,6 @@
{
fileSystems."/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
}