bootloader module removed
This commit is contained in:
parent
cab60bff45
commit
8485be713b
@ -23,7 +23,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# System level configuration
|
boot.loader.systemd-boot.enable = true;
|
||||||
sys = {
|
sys = {
|
||||||
audio.enable = true;
|
audio.enable = true;
|
||||||
bootloader.systemd-boot.enable = true;
|
bootloader.systemd-boot.enable = true;
|
||||||
|
|||||||
@ -29,10 +29,10 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# System level configuration
|
boot.loader.systemd-boot.enable = true;
|
||||||
sys = {
|
sys = {
|
||||||
audio.enable = true;
|
audio.enable = true;
|
||||||
bootloader.systemd-boot.enable = true;
|
#bootloader.systemd-boot.enable = true;
|
||||||
desktop = {
|
desktop = {
|
||||||
steamdeck.enable = true;
|
steamdeck.enable = true;
|
||||||
};
|
};
|
||||||
|
|||||||
@ -3,10 +3,10 @@
|
|||||||
config,
|
config,
|
||||||
}: {
|
}: {
|
||||||
options = {
|
options = {
|
||||||
sys.bootloader.systemd.enable = lib.mkEnableOption "Enable systemd-boot as the bootloader";
|
sys.bootloader.systemd-boot.enable = lib.mkEnableOption "Enable systemd-boot as the bootloader";
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf config.sys.bootloader.systemd.enable {
|
config = lib.mkIf config.sys.bootloader.systemd-boot.enable {
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -15,14 +15,14 @@
|
|||||||
./settings/loginManager.nix
|
./settings/loginManager.nix
|
||||||
./settings/style.nix
|
./settings/style.nix
|
||||||
./settings/default-applications.nix
|
./settings/default-applications.nix
|
||||||
./settings/bootloader.nix
|
#./settings/bootloader.nix
|
||||||
|
|
||||||
./settings/user.nix
|
./settings/user.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
sys = {
|
sys = {
|
||||||
audio.enable = lib.mkDefault true;
|
audio.enable = lib.mkDefault true;
|
||||||
bootloader.systemd-boot.enable = lib.mkDefault true;
|
#bootloader.systemd-boot.enable = lib.mkDefault true;
|
||||||
desktop = {
|
desktop = {
|
||||||
plasma.enable =
|
plasma.enable =
|
||||||
if userSettings.plasma == true
|
if userSettings.plasma == true
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user