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"
|
||||
}
|
||||
},
|
||||
"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",
|
||||
|
|
|
|||
10
flake.nix
10
flake.nix
|
|
@ -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 = {
|
||||
|
|
@ -43,8 +48,8 @@
|
|||
};
|
||||
|
||||
outputs = inputs@{ ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
let
|
||||
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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
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