feat: set up 'stylix'

This commit is contained in:
2026-02-16 20:07:52 +01:00
parent 04f33a92ea
commit 688bae321b
8 changed files with 81 additions and 34 deletions

16
home/modules/pomo.nix Normal file
View File

@@ -0,0 +1,16 @@
{
dotsPath,
pkgs,
...
}:
let
pomoScript = builtins.readFile "${dotsPath}/.bin/pomo";
pomoScriptNoShebang = pkgs.lib.removePrefix "#!/usr/bin/env python3\n" pomoScript;
pomo = pkgs.writers.writePython3Bin "pomo" {
libraries = with pkgs.python3Packages; [ plyer ];
} pomoScriptNoShebang;
in
{
home.packages = [ pomo ];
}