add pi1. Testing in progress
This commit is contained in:
parent
7e4d451b6f
commit
94277df0d8
3 changed files with 9 additions and 6 deletions
|
|
@ -45,7 +45,7 @@
|
||||||
w1 = import ./hosts/w1/colmena.nix;
|
w1 = import ./hosts/w1/colmena.nix;
|
||||||
# w2 = import ./hosts/w2/colmena.nix;
|
# w2 = import ./hosts/w2/colmena.nix;
|
||||||
# t2 = import ./hosts/t2/colmena.nix;
|
# t2 = import ./hosts/t2/colmena.nix;
|
||||||
# pi1 = import ./hosts/pi1/colmena.nix;
|
pi1 = import ./hosts/pi1/colmena.nix;
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
|
@ -79,6 +79,10 @@
|
||||||
modules = [ ./hosts/t2 ];
|
modules = [ ./hosts/t2 ];
|
||||||
specialArgs = { inherit inputs outputs; };
|
specialArgs = { inherit inputs outputs; };
|
||||||
};
|
};
|
||||||
|
pi1 = lib.nixosSystem {
|
||||||
|
modules = [ ./hosts/pi1 ];
|
||||||
|
specialArgs = { inherit inputs outputs; };
|
||||||
|
};
|
||||||
|
|
||||||
# servers
|
# servers
|
||||||
display = lib.nixosSystem {
|
display = lib.nixosSystem {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||||
imports = [ ./default.nix ];
|
imports = [ ./default.nix ];
|
||||||
deployment = {
|
deployment = {
|
||||||
targetHost = "nixos";
|
|
||||||
tags = [ "arm" ];
|
tags = [ "arm" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,10 +11,10 @@
|
||||||
boot.loader.grub.enable = false;
|
boot.loader.grub.enable = false;
|
||||||
boot.loader.generic-extlinux-compatible.enable = true;
|
boot.loader.generic-extlinux-compatible.enable = true;
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems."/" =
|
||||||
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
|
{ device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue