refactor(nixos): move supportedFilesystems nfs to common boot module
This commit is contained in:
@@ -31,6 +31,7 @@ in
|
|||||||
services.xe-guest-utilities.enable = mkIf cfg.xenGuest true;
|
services.xe-guest-utilities.enable = mkIf cfg.xenGuest true;
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
supportedFilesystems = [ "nfs" ];
|
||||||
kernelParams =
|
kernelParams =
|
||||||
lib.optionals cfg.silentBoot [
|
lib.optionals cfg.silentBoot [
|
||||||
"quiet"
|
"quiet"
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ in
|
|||||||
|
|
||||||
# Config Boot
|
# Config Boot
|
||||||
boot = {
|
boot = {
|
||||||
supportedFilesystems = [ "nfs" ];
|
|
||||||
loader.timeout = lib.mkForce 0;
|
loader.timeout = lib.mkForce 0;
|
||||||
consoleLogLevel = 7;
|
consoleLogLevel = 7;
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ in
|
|||||||
{
|
{
|
||||||
system.stateVersion = "25.11";
|
system.stateVersion = "25.11";
|
||||||
time.timeZone = "America/New_York";
|
time.timeZone = "America/New_York";
|
||||||
boot.supportedFilesystems = [ "nfs" ];
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
hardware.nvidia-container-toolkit.enable = true;
|
hardware.nvidia-container-toolkit.enable = true;
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ in
|
|||||||
{
|
{
|
||||||
system.stateVersion = "25.11";
|
system.stateVersion = "25.11";
|
||||||
time.timeZone = "America/New_York";
|
time.timeZone = "America/New_York";
|
||||||
boot.supportedFilesystems = [ "nfs" ];
|
|
||||||
|
|
||||||
reichard = {
|
reichard = {
|
||||||
nix = enabled;
|
nix = enabled;
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ in
|
|||||||
time.timeZone = "America/New_York";
|
time.timeZone = "America/New_York";
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
supportedFilesystems = [ "nfs" ];
|
|
||||||
kernelParams = [
|
kernelParams = [
|
||||||
# Mask GPE03 (EC wakeup events) to allow hibernation without spurious CPU wakeups
|
# Mask GPE03 (EC wakeup events) to allow hibernation without spurious CPU wakeups
|
||||||
"acpi_mask_gpe=0x03"
|
"acpi_mask_gpe=0x03"
|
||||||
|
|||||||
Reference in New Issue
Block a user