aboutsummaryrefslogtreecommitdiff
path: root/modules/home/i3wm/nord-blue/i3.nix
blob: 609ac4227e47d0cc2e0e179671d99b198459a4eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs, config, lib, ... }:

let 
  vars = import ./variables.nix {inherit ...; }; 
in 
{
  packages = with pkgs; [
    feh # Wallpaper
  ];
  programs = {
    i3 = {
      enable = true;
      config.bars = [];
      
      extraPackages = with pkgs; [
        dmenu
        i3-lock
        polybar
      ];
    }
  }
}