dotfiles/nixos/i3/home.nix

29 lines
398 B
Nix
Raw Normal View History

2019-07-14 09:35:06 +01:00
{ config, pkgs, ... }:
2019-08-24 09:55:51 +01:00
{
2020-01-10 23:32:05 +00:00
imports = [
./polybar/polybar.nix
./i3.nix
./dunst.nix
./autorandr.nix
];
2019-08-24 09:55:51 +01:00
services = {
compton = {
enable = true;
vSync = "opengl-oml";
2019-07-14 12:42:23 +01:00
};
2019-08-24 09:55:51 +01:00
kdeconnect = {
2019-07-14 12:42:23 +01:00
enable = true;
2019-08-24 09:55:51 +01:00
indicator = true;
};
network-manager-applet.enable = true;
pasystray.enable = true;
};
2019-07-14 19:24:40 +01:00
2019-08-24 09:55:51 +01:00
xsession = {
enable = true;
};
2019-07-14 19:24:40 +01:00
2019-07-14 14:45:41 +01:00
2019-08-24 09:55:51 +01:00
}