DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 40d457f6a1ae9a34e4a369eaf7219cfc0effddb1 nix-arta/modules/group/compositor.nix -rw-r--r-- 360 bytes
40d457f6Jonni Liljamo feat: hyprland and friends 8 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
Common dependencies for Wayland compositors
*/
{config, ...}: {
  flake.modules.nixos.groupCompositor = {...}: {
    imports = with config.flake.modules.nixos; [
      fonts
      mako
    ];
  };

  flake.modules.homeManager.groupCompositor = {...}: {
    imports = with config.flake.modules.homeManager; [
      mako
      rofi
      waybar
    ];
  };
}