disable t2
This commit is contained in:
parent
a3d157656a
commit
ef8aef6205
5 changed files with 41 additions and 1 deletions
|
|
@ -89,7 +89,7 @@
|
||||||
loki = mkNixosSystem { modules = [./hosts/loki]; };
|
loki = mkNixosSystem { modules = [./hosts/loki]; };
|
||||||
pocket2 = mkNixosSystem { modules = [./hosts/pocket2]; };
|
pocket2 = mkNixosSystem { modules = [./hosts/pocket2]; };
|
||||||
smaug = mkNixosSystem { modules = [./hosts/smaug]; };
|
smaug = mkNixosSystem { modules = [./hosts/smaug]; };
|
||||||
t2 = mkNixosSystem { modules = [./hosts/t2]; };
|
# t2 = mkNixosSystem { modules = [./hosts/t2]; };
|
||||||
pi1 = mkNixosSystem { modules = [./hosts/pi1]; };
|
pi1 = mkNixosSystem { modules = [./hosts/pi1]; };
|
||||||
|
|
||||||
# servers
|
# servers
|
||||||
|
|
|
||||||
5
hosts/harper/hardware-configuration.nix
Normal file
5
hosts/harper/hardware-configuration.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{ config, lib, pkgs, modulesPath, ... }: {
|
||||||
|
imports = [];
|
||||||
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
}
|
||||||
5
hosts/harper2/hardware-configuration.nix
Normal file
5
hosts/harper2/hardware-configuration.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{ config, lib, pkgs, modulesPath, ... }: {
|
||||||
|
imports = [];
|
||||||
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
}
|
||||||
15
hosts/nuwww/hardware-configuration.nix
Normal file
15
hosts/nuwww/hardware-configuration.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
{ config, lib, pkgs, modulesPath, ... }: {
|
||||||
|
imports = [];
|
||||||
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
fileSystems."/" = {
|
||||||
|
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/boot" = {
|
||||||
|
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000001";
|
||||||
|
fsType = "vfat";
|
||||||
|
};
|
||||||
|
}
|
||||||
15
hosts/pihole/hardware-configuration.nix
Normal file
15
hosts/pihole/hardware-configuration.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
{ config, lib, pkgs, modulesPath, ... }: {
|
||||||
|
imports = [];
|
||||||
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
fileSystems."/" = {
|
||||||
|
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/boot" = {
|
||||||
|
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000001";
|
||||||
|
fsType = "vfat";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue