Refining modules/nixos/base.nix to make sense for more machines

There is a few additional changes due to typos introduced while working
on other stuff.
This commit is contained in:
Jay Looney 2025-12-02 15:07:14 -06:00
parent 26f35df7ad
commit aa4a8347ec
11 changed files with 67 additions and 29 deletions

6
hosts/cobalt/boot.nix Normal file
View file

@ -0,0 +1,6 @@
{}:
{
# Default to systemd-boot
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}

View file

@ -1,6 +1,7 @@
{ inputs, ... }:
{
imports = [
./boot.nix
../../modules/nixos/base.nix
../../modules/nixos/audio.nix
#../../modules/nixos/desktop.nix

6
hosts/lithium/boot.nix Normal file
View file

@ -0,0 +1,6 @@
{}:
{
# Default to systemd-boot
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}

View file

@ -1,6 +1,7 @@
{ inputs, ... }:
{
imports = [
./boot.nix
../../modules/nixos/base.nix
inputs.sops-nix.nixosModules.sops
./hardware.nix

6
hosts/neon/boot.nix Normal file
View file

@ -0,0 +1,6 @@
{}:
{
# Default to systemd-boot
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}

View file

@ -1,6 +1,7 @@
{ inputs, ... }:
{
imports = [
./boot.nix
../../modules/nixos/base.nix
../../modules/nixos/audio.nix
../../modules/nixos/desktop