hypland theme fixes
This commit is contained in:
@@ -2,6 +2,23 @@
|
||||
let
|
||||
settings = import ./settings.nix { inherit pkgs hyprlandSettings; };
|
||||
wallpaper = "/run/wallpaper.jpg";
|
||||
jiggler = pkgs.python3.pkgs.buildPythonPackage rec {
|
||||
pname = "jiggler";
|
||||
version = "0.0.3";
|
||||
format = "pyproject";
|
||||
src = pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-6M4CbwxajYaQ5s73y+arKewLgu/pjfCay2giVVGYjhM=";
|
||||
};
|
||||
|
||||
# do not run tests
|
||||
doCheck = false;
|
||||
nativeBuildInputs = with pkgs.python3.pkgs; [ setuptools ];
|
||||
propagatedBuildInputs = with pkgs.python3.pkgs; [
|
||||
click
|
||||
pynput
|
||||
];
|
||||
};
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
@@ -216,7 +233,9 @@ in
|
||||
size = settings.cursorSize;
|
||||
};
|
||||
|
||||
packages = settings.requiredPkgs;
|
||||
packages = [
|
||||
jiggler
|
||||
] ++ settings.requiredPkgs;
|
||||
};
|
||||
|
||||
dconf = {
|
||||
|
||||
Reference in New Issue
Block a user