mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 14:01:34 +01:00
Rename the namespace of the system-modules
This commit is contained in:
parent
61f32cb7ea
commit
06623cd93a
34 changed files with 162 additions and 153 deletions
|
|
@ -1,8 +1,8 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.myConfig.boot.loader.grub.enable = lib.mkEnableOption "";
|
||||
options.custom.boot.loader.grub.enable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.myConfig.boot.loader.grub.enable {
|
||||
config = lib.mkIf config.custom.boot.loader.grub.enable {
|
||||
boot = {
|
||||
tmp.cleanOnBoot = true;
|
||||
loader.grub.enable = true;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.myConfig.boot.loader.systemdBoot.enable = lib.mkEnableOption "";
|
||||
options.custom.boot.loader.systemdBoot.enable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.myConfig.boot.loader.systemdBoot.enable {
|
||||
config = lib.mkIf config.custom.boot.loader.systemdBoot.enable {
|
||||
boot = {
|
||||
tmp.cleanOnBoot = true;
|
||||
loader = {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.myConfig.boot.silent = lib.mkEnableOption "";
|
||||
options.custom.boot.silent = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.myConfig.boot.silent {
|
||||
config = lib.mkIf config.custom.boot.silent {
|
||||
boot = {
|
||||
loader.timeout = 0;
|
||||
kernelParams = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue