diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-07 10:51:33 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-07 10:51:33 -0700 |
commit | 2e067137ada1610f1a5ec205bd42458669233970 (patch) | |
tree | 1fb1afd535c824bb2fb9188cf714a8386e2e549c /home/python | |
parent | initial attempt to reconfigure home-manager (diff) | |
download | world-2e067137ada1610f1a5ec205bd42458669233970.tar.gz |
home: misc fixes
Diffstat (limited to 'home/python')
-rw-r--r-- | home/python/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/python/default.nix b/home/python/default.nix index c7069e3..b34f978 100644 --- a/home/python/default.nix +++ b/home/python/default.nix @@ -1,7 +1,7 @@ -{ pkgs, lib, ... }: +{ config, pkgs, lib, ... }: let cfg = config.my.home.python; in { - options.my.home.python = with lib.my; { + options.my.home.python = with lib; { enable = mkEnableOption "python configuration"; }; |