Adds Jankyborders service

This commit is contained in:
Abhinav Sarkar 2024-09-14 09:47:23 +05:30
parent 96be0211f3
commit 4563a7973d
2 changed files with 13 additions and 1 deletions

View File

@ -1 +1,3 @@
{ pkgs, inputs, ... }: { imports = [ ./nix.nix ./system.nix ]; } { pkgs, inputs, ... }: {
imports = [ ./nix.nix ./system.nix ./services.nix ];
}

10
services.nix Normal file
View File

@ -0,0 +1,10 @@
{ config, pkgs, lib, ... }:
{
services = {
jankyborders = {
enable = true;
active_color = "0xff00ff00";
hidpi = true;
};
};
}