Home: installed foot properly so stylix can do it's thing

This commit is contained in:
Jurn Wubben 2025-07-10 20:03:12 +02:00
parent 6543e43b72
commit 4dc519be8c
2 changed files with 15 additions and 0 deletions

14
home/programs/foot.nix Normal file
View file

@ -0,0 +1,14 @@
{
programs.foot = {
enable = true;
settings = {};
};
xdg.desktopEntries = builtins.listToAttrs (map (x: {
name = "${x}";
value = {
name = "";
noDisplay = true;
};
}) ["footclient" "foot-server"]);
}