enable 'shikane' on 'astyanax' (and add 'wdisplays')

This commit is contained in:
2025-12-06 23:51:50 +01:00
parent 7b9eac546b
commit f5ffa8b9d1
2 changed files with 7 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ in
../../modules/desktop/niri
../../modules/git.nix
../../modules/k9s.nix
(import ../../modules/shikane.nix { inherit pkgs; })
(import ../../modules/taskwarrior.nix {
inherit config;
inherit pkgs;

6
home/modules/shikane.nix Normal file
View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ wdisplays ];
services.shikane.enable = true;
}