feat: cage with anime ^_^

This commit is contained in:
alina 🌸 2024-06-06 13:10:40 +03:00
parent 4184c835e0
commit 40a9e3a6ec
Signed by: teidesu
SSH key fingerprint: SHA256:uNeCpw6aTSU4aIObXLvHfLkDa82HWH9EiOj9AXOIRpI

View file

@ -0,0 +1,19 @@
{ pkgs, abs, config, ... }@inputs:
{
services.cage = {
enable = true;
user = "cage";
program = "${pkgs.mpv}/bin/mpv /mnt/puffer/Downloads/anime --shuffle --loop-playlist --directory-mode=recursive";
environment = {
WLR_LIBINPUT_NO_DEVICES = "1";
};
};
users.users.cage = {
isNormalUser = true;
description = "Guest account for Cage";
createHome = false;
shell = pkgs.shadow;
};
}