diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-30 15:06:34 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-30 15:11:25 -0400 |
commit | e2486fa2fa5b3014a22b52ac521cd77f80b7444a (patch) | |
tree | 182b1eccb5eabb5b726b111ed01b1a6b5f9d83e3 /pkgs | |
parent | add ly display manager (diff) | |
download | dotfiles-nix-e2486fa2fa5b3014a22b52ac521cd77f80b7444a.tar.gz dotfiles-nix-e2486fa2fa5b3014a22b52ac521cd77f80b7444a.tar.bz2 dotfiles-nix-e2486fa2fa5b3014a22b52ac521cd77f80b7444a.zip |
update ly version and update config
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/default.nix | 1 | ||||
-rw-r--r-- | pkgs/ly/default.nix | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index e3b3f45..45e32bb 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -2,5 +2,6 @@ arcanist = pkgs.callPackage ./arcanist {}; astal = pkgs.callPackage ./astal inputs; libfprint-2-tod1-vfs0090 = pkgs.callPackage ./libfprint-2-tod1-vfs0090 {}; + ly = pkgs.callPackage ./ly {}; unofficial-homestuck-collection = pkgs.callPackage ./unofficial-homestuck-collection {}; } diff --git a/pkgs/ly/default.nix b/pkgs/ly/default.nix new file mode 100644 index 0000000..26c2abd --- /dev/null +++ b/pkgs/ly/default.nix @@ -0,0 +1,14 @@ +{ + ly, + fetchFromGitea, + ... +}: +ly.overrideAttrs { + src = fetchFromGitea { + domain = "codeberg.org"; + owner = "AnErrupTion"; + repo = "ly"; + rev = "3ad0c003803999075c1333fe5af6954369d04af4"; + hash = "sha256-AiRUISUHKb6Lq0TNLb4ioAoBxT2mPqBW+9+0nw9tgks="; + }; +} |