mindflayer: init
This commit is contained in:
parent
df76123682
commit
bf9992a5a6
3 changed files with 45 additions and 2 deletions
21
flake.lock
generated
21
flake.lock
generated
|
|
@ -341,6 +341,26 @@
|
||||||
"type": "github"
|
"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": {
|
"nixos-hardware": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1759261527,
|
"lastModified": 1759261527,
|
||||||
|
|
@ -556,6 +576,7 @@
|
||||||
"authentik-nix": "authentik-nix",
|
"authentik-nix": "authentik-nix",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"niri": "niri",
|
"niri": "niri",
|
||||||
|
"nixos-avf": "nixos-avf",
|
||||||
"nixos-hardware": "nixos-hardware",
|
"nixos-hardware": "nixos-hardware",
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2",
|
||||||
"nixpkgs-pin": "nixpkgs-pin",
|
"nixpkgs-pin": "nixpkgs-pin",
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,11 @@
|
||||||
|
|
||||||
authentik-nix.url = "github:nix-community/authentik-nix";
|
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";
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
|
@ -44,7 +49,7 @@
|
||||||
|
|
||||||
outputs = inputs@{ ... }:
|
outputs = inputs@{ ... }:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = inputs.nixpkgs.lib.mkDefault "x86_64-linux";
|
||||||
nixosSystem =
|
nixosSystem =
|
||||||
hostName:
|
hostName:
|
||||||
inputs.nixpkgs.lib.nixosSystem {
|
inputs.nixpkgs.lib.nixosSystem {
|
||||||
|
|
@ -56,6 +61,7 @@
|
||||||
Swordsmachine = nixosSystem "Swordsmachine";
|
Swordsmachine = nixosSystem "Swordsmachine";
|
||||||
Earthmover = nixosSystem "Earthmover";
|
Earthmover = nixosSystem "Earthmover";
|
||||||
Drone = nixosSystem "Drone";
|
Drone = nixosSystem "Drone";
|
||||||
|
Mindflayer = nixosSystem "Mindflayer";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
16
hosts/Mindflayer/default.nix
Normal file
16
hosts/Mindflayer/default.nix
Normal 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";
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue