Skip to content

Commit

Permalink
config: use lib.literalExpression
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyinstarlight committed Nov 12, 2023
1 parent f6a866e commit 91dd17a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

networkd = lib.mkEnableOption (lib.mdDoc "networkd profile") // {
default = !config.foosteros.profiles.networkmanager;
defaultText = "!config.foosteros.profiles.networkmanager";
defaultText = lib.literalExpression "!config.foosteros.profiles.networkmanager";
};

networkmanager = lib.mkEnableOption (lib.mdDoc "networkmanager profile");
Expand All @@ -98,7 +98,7 @@

sd-boot = lib.mkEnableOption (lib.mdDoc "sd-boot profile") // {
default = !config.foosteros.profiles.grub;
defaultText = "!config.foosteros.profiles.grub";
defaultText = lib.literalExpression "!config.foosteros.profiles.grub";
};

secureboot = lib.mkEnableOption (lib.mdDoc "secureboot profile");
Expand Down

0 comments on commit 91dd17a

Please sign in to comment.