Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. {pkgs, lib, ...}:
  2. {
  3. options.home-manager.users = lib.mkOption {
  4. options = {
  5. foo = lib.mkOption {
  6. description = "Test";
  7. type = lib.types.string;
  8. default = "bar";
  9. };
  10. };
  11. };
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement