39 lines
574 B
Nix
39 lines
574 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./autorandr.nix
|
|
./i3.nix
|
|
./i3-status.nix
|
|
./dunst.nix
|
|
./rofi.nix
|
|
./kdeconnect.nix
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
CM_LAUNCHER="rofi";
|
|
};
|
|
|
|
services = {
|
|
picom = {
|
|
enable = true;
|
|
vSync = true;
|
|
};
|
|
network-manager-applet.enable = true;
|
|
pasystray.enable = true;
|
|
};
|
|
|
|
services.udiskie.enable = true;
|
|
services.gammastep = {
|
|
enable = true;
|
|
tray = true;
|
|
provider = "manual";
|
|
latitude = 52.0;
|
|
longitude = -1.0;
|
|
};
|
|
|
|
xsession = {
|
|
enable = true;
|
|
};
|
|
|
|
|
|
}
|