diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-10 12:13:36 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-10 12:13:36 +0200 |
| commit | 648e12342110718ca3736ec0082a688590cc0f7d (patch) | |
| tree | 0d05e32e6cf7fbb05e8a5e20984e14db77406071 /home/rices/schrottkatze/layaway.nix | |
| parent | 0f4f072b317bafad7016dcb9fdb3a4dd593d7f85 (diff) | |
Add schrottkatze rice: terminal, notifications, fuzzel, swayidle, layaway
Kitty with Gruvbox colors, Dunst notifications, Fuzzel launcher,
swayidle/swaylock screen locking, layaway layout tool.
Diffstat (limited to 'home/rices/schrottkatze/layaway.nix')
| -rw-r--r-- | home/rices/schrottkatze/layaway.nix | 24 |
1 files changed, 24 insertions, 0 deletions
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]; +} |
