22 lines
378 B
Nix
22 lines
378 B
Nix
{ config, pkgs, lib, ... }: let
|
|
|
|
in {
|
|
imports = [
|
|
./dwl.nix
|
|
];
|
|
|
|
services.displayManager = {
|
|
enable = true;
|
|
execCmd = "${pkgs.emptty}/bin/emptty -d";
|
|
};
|
|
systemd.services.display-manager = {
|
|
enable = true;
|
|
serviceConfig = {
|
|
EnvironmentFile=${./emptty.conf};
|
|
Type="idle";
|
|
TTYPath="/dev/tty7";
|
|
TTYReset="yes";
|
|
};
|
|
};
|
|
}
|