chore: update flakes
This commit is contained in:
@@ -5,9 +5,9 @@
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.system.boot;
|
||||
cfg = config.mySystem.boot;
|
||||
in {
|
||||
options.system.boot = {
|
||||
options.mySystem.boot = {
|
||||
extraModprobeConfig = mkOption {
|
||||
type = types.lines;
|
||||
default = "";
|
||||
@@ -51,7 +51,7 @@ in {
|
||||
};
|
||||
|
||||
config.boot = {
|
||||
initrd.kernelModules = lists.optional config.system.hardware.amdgpu.enable "amdgpu";
|
||||
initrd.kernelModules = lists.optional config.mySystem.hardware.amdgpu.enable "amdgpu";
|
||||
loader = {
|
||||
systemd-boot.enable = cfg.systemd-boot;
|
||||
efi.canTouchEfiVariables = cfg.systemd-boot;
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.system.boot.plymouth;
|
||||
cfg = config.mySystem.boot.plymouth;
|
||||
in {
|
||||
options.system.boot.plymouth.enable = mkEnableOption "Enables Plymouth at system boot";
|
||||
options.mySystem.boot.plymouth.enable = mkEnableOption "Enables Plymouth at system boot";
|
||||
config.boot = mkIf cfg.enable {
|
||||
plymouth = {
|
||||
inherit (cfg) enable;
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.system.boot.zram;
|
||||
cfg = config.mySystem.boot.zram;
|
||||
in {
|
||||
options.system.boot.zram = {
|
||||
options.mySystem.boot.zram = {
|
||||
enable = mkEnableOption "Enable ZRAM";
|
||||
memoryMax = mkOption {
|
||||
type = types.int;
|
||||
|
||||
Reference in New Issue
Block a user