aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/graphics/i3/default.nix
blob: 251b04ec2021307c6b3cd2cb19af94129ebd21de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs, ... }:

let
  wallpaper = "~/pictures/wallpaper/my-cyber-city-4k-28-2560x1440.jpg";
in
{
  xsession.windowManager.i3 = import ./config.nix { inherit pkgs wallpaper; };

  xdg.configFile."i3/dynamic-tags/" = {
    recursive = true;
    executable = true;
    source = ./dynamic-tags;
  };

  xdg.configFile."i3/compton.conf" = {
    source = ./compton.conf;
  };

  xdg.configFile."i3/i3status.conf" = {
    source = ./i3status.conf;
  };
}