Fixed Python3 Import

This commit is contained in:
Annika Merris 2024-05-21 11:37:38 -04:00
parent 5dc4dfee11
commit 701e1c725b

View file

@ -9,10 +9,8 @@
}; };
}; };
config = lib.mkIf (config.python3.enable) { config = lib.mkIf (config.python3.enable) {
home-manager.users.${config.user} = {
environment.systemPackages = [ environment.systemPackages = [
pkgs.python3 pkgs.python3
]; ];
}; };
};
} }