WIP: Changed Hyprland from Hyprland to Lua

This commit is contained in:
2026-05-25 01:31:36 +02:00
parent 2a28574058
commit d84b2e882d
9 changed files with 315 additions and 354 deletions
+9 -7
View File
@@ -1,17 +1,19 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
home.packages = with pkgs; [
# Python 3.14 (newest stable)
python314
python314Packages.pip
python314Packages.virtualenv
# Additional useful tools
python314Packages.pipx # Install Python apps in isolated environments
uv # Fast Python package installer (alternative to pip)
(python314Packages.pipx.overridePythonAttrs (_: {
doCheck = false;
}))
uv
];
# Set up default Python version
home.sessionVariables = { PYTHON = "${pkgs.python313}/bin/python3"; };
home.sessionVariables = {
PYTHON = "${pkgs.python313}/bin/python3";
};
programs.fish.shellAliases = {
venv = "python3 -m venv";