From 648e12342110718ca3736ec0082a688590cc0f7d Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Fri, 10 Apr 2026 12:13:36 +0200 Subject: Add schrottkatze rice: terminal, notifications, fuzzel, swayidle, layaway Kitty with Gruvbox colors, Dunst notifications, Fuzzel launcher, swayidle/swaylock screen locking, layaway layout tool. --- home/rices/schrottkatze/layaway.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 home/rices/schrottkatze/layaway.nix (limited to 'home/rices/schrottkatze/layaway.nix') diff --git a/home/rices/schrottkatze/layaway.nix b/home/rices/schrottkatze/layaway.nix new file mode 100644 index 0000000..35db5ee --- /dev/null +++ b/home/rices/schrottkatze/layaway.nix @@ -0,0 +1,24 @@ +{pkgs, lib, ...}: +let + layaway = pkgs.rustPlatform.buildRustPackage rec { + pname = "layaway"; + version = "0.2.0"; + + src = pkgs.fetchFromGitHub { + owner = "MultisampledNight"; + repo = pname; + rev = "v${version}"; + hash = "sha256-SzAuVFEy56svasO3+1p6ysBRrIQd0UZX++/P4ZuwWm0="; + }; + + cargoHash = "sha256-QVxlkE+sq4U048LnshI/tq6HInKiSgjQLAdR+27/wEI="; + + meta = with lib; { + description = "Layout creation for Sway via a relative and human-readable DSL."; + homepage = "https://github.com/MultisampledNight/layaway"; + maintainers = [maintainers.multisn8]; + }; + }; +in { + home.packages = [layaway]; +} -- cgit v1.2.3