mindflayer: init

This commit is contained in:
wo2wz 2025-10-03 21:16:43 -04:00
parent df76123682
commit bf9992a5a6
3 changed files with 45 additions and 2 deletions

21
flake.lock generated
View file

@ -341,6 +341,26 @@
"type": "github"
}
},
"nixos-avf": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1758048506,
"narHash": "sha256-I7cLckLwnppaqoUFvTrgGKDevNnIn3qV/3ELxetm6jk=",
"owner": "nix-community",
"repo": "nixos-avf",
"rev": "1b7bf91cef5e3aeada4bc81977eb12b71585b45c",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "nixos-avf",
"type": "github"
}
},
"nixos-hardware": {
"locked": {
"lastModified": 1759261527,
@ -556,6 +576,7 @@
"authentik-nix": "authentik-nix",
"home-manager": "home-manager",
"niri": "niri",
"nixos-avf": "nixos-avf",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2",
"nixpkgs-pin": "nixpkgs-pin",

View file

@ -8,6 +8,11 @@
authentik-nix.url = "github:nix-community/authentik-nix";
nixos-avf = {
url = "github:nix-community/nixos-avf";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
home-manager = {
@ -44,7 +49,7 @@
outputs = inputs@{ ... }:
let
system = "x86_64-linux";
system = inputs.nixpkgs.lib.mkDefault "x86_64-linux";
nixosSystem =
hostName:
inputs.nixpkgs.lib.nixosSystem {
@ -56,6 +61,7 @@
Swordsmachine = nixosSystem "Swordsmachine";
Earthmover = nixosSystem "Earthmover";
Drone = nixosSystem "Drone";
Mindflayer = nixosSystem "Mindflayer";
};
};
}

View file

@ -0,0 +1,16 @@
{ inputs, config, ... }:
{
imports = [
../../common/locales.nix
../../common/nix.nix
../../common/users.nix
inputs.nixos-avf.nixosModules.avf
];
networking.hostName = "Mindflayer";
nixpkgs.hostPlatform = "aarch64-linux";
system.stateVersion = "25.05";
}