Initial commit.
This commit is contained in:
commit
67823cbed6
51 changed files with 1714 additions and 0 deletions
35
roles/gui.nix
Normal file
35
roles/gui.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
imports = [
|
||||
./pipewire.nix
|
||||
./non-virtual.nix
|
||||
];
|
||||
|
||||
services = {
|
||||
orca = {
|
||||
enable = true;
|
||||
package = pkgs.unstable.orca;
|
||||
};
|
||||
xserver = {
|
||||
enable = true;
|
||||
xkb.layout = "us";
|
||||
displayManager.lightdm = {
|
||||
enable = true;
|
||||
greeters.gtk = {
|
||||
extraConfig = ''
|
||||
a11y-states = +reader
|
||||
reader = orca
|
||||
'';
|
||||
};
|
||||
};
|
||||
excludePackages = [ pkgs.xterm ];
|
||||
};
|
||||
};
|
||||
|
||||
users.users.lightdm.extraGroups = [
|
||||
"pipewire"
|
||||
"pulse-access"
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue