!wfudwzqQUiJYJnqfSY:nixos.org

NixOS Module System

125 Members
24 Servers

Load older messages


SenderMessageTime
27 Mar 2024
@hexa:lossy.networkhexacan I like23:26:00
@hexa:lossy.networkhexa
  bla = mkOption {
  } // lib.optionalAttrs (cond) {
    default = "bar";
  };
23:26:37
@hexa:lossy.networkhexaprobably can23:26:51
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moeI think that would work23:27:14
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moeMight need parenthesis, but even then23:27:23
@hexa:lossy.networkhexa🙂23:27:35
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moe If it doesn't work, you can definitely do it through config though 23:28:44
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moe
config.bla = lib.mkIf cond (lib.mkDefault "value");
23:29:08
@hexa:lossy.networkhexayeah, but that's not really discoverable23:29:36
@hexa:lossy.networkhexa *
  bla = mkOption {
    defaultText = ''
      Something if cond, else unset
    '';
  } // lib.optionalAttrs (cond) {
    default = "bar";
  };
23:30:03
@hexa:lossy.networkhexaupdate the example with defaultText 23:30:12
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moeYou're already gonna need to use the documentation text override, so I don't think it would really affect the discoverability that much23:30:19
@hexa:lossy.networkhexathat was always going to be the case23:30:32
@hexa:lossy.networkhexabut defaultText makes the condition discoverable23:30:39
@hexa:lossy.networkhexaas opposed to hiding it in the implementation23:30:47
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moeMy example was just how the default part could be done, wasn't a self-contained example23:31:58
@hexa:lossy.networkhexaI understood config as the implementation section of the module23:32:55
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moeIt's... weird, unfortunately. Options are mostly the interface, but with defaults they are somewhat load bearing23:34:02
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moe All default does is assign a value with a priority, the end result here is the same 23:34:15
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moeThe benefit of it being part of the option is that it can be evaluated without the rest of it for the purpose of documentation and inspection, but in the end it's a modifiable part of the code nonetheless23:34:52
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moeThe main issue with doing it the config way is just that it makes that part of it grouped further away, which isn't particularly good23:36:20
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moeIt is useful to know if you want to add defaults to other modules though :)23:36:32
@hexa:lossy.networkhexaagreed23:36:33
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moe
In reply to @hexa:lossy.network
  bla = mkOption {
    defaultText = ''
      Something if cond, else unset
    '';
  } // lib.optionalAttrs (cond) {
    default = "bar";
  };
Just in case you hadn't tested it yet, this does work by the way
23:38:04
@hexa:lossy.networkhexaI was about to23:38:48
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moeI need to figure out a better way to test module stuff than shoving it in my NixOS configuration and opening the flake repl23:39:48
28 Mar 2024
@adam:robins.wtf@adam:robins.wtfbuild a nixosTest?13:46:45
@infinidoge:matrix.orgMigrated to @infinidoge:inx.moeThis is more about the module system itself as opposed to NixOS, so a NixOS test would be a bit overkill15:56:53
@adam:robins.wtf@adam:robins.wtfwell if you write a nixosTest, then you can load it into the repl within nixpkgs without having to use your flake17:01:43
@adam:robins.wtf@adam:robins.wtfsaves time of updating the flake input and copying a bunch to the store17:02:30

Show newer messages


Back to Room ListRoom Version: 10