mirror of
https://github.com/vale981/nixconf
synced 2025-03-04 17:21:38 -05:00
37 lines
584 B
Nix
37 lines
584 B
Nix
{ config, pkgs, ...}:
|
|
|
|
{
|
|
imports = [
|
|
(import ./compton.nix {inherit config pkgs; })
|
|
];
|
|
|
|
services = {
|
|
xserver = {
|
|
enable = true;
|
|
layout = "us";
|
|
|
|
libinput = {
|
|
enable = true;
|
|
};
|
|
|
|
displayManager.sddm.enable = true;
|
|
|
|
windowManager = {
|
|
i3.enable = true;
|
|
default = "i3";
|
|
};
|
|
};
|
|
|
|
printing = {
|
|
enable = true;
|
|
drivers = (with pkgs; [ gutenprint splix ]);
|
|
};
|
|
|
|
acpid.enable = true;
|
|
emacs.enable = true;
|
|
# todo : look into conf of ssh.
|
|
#openssh.enable = true;
|
|
};
|
|
|
|
|
|
}
|