mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
15 lines
227 B
Nix
15 lines
227 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
users.users.yoda = {
|
||
|
packages = with pkgs; [
|
||
|
firefox # Web browser
|
||
|
];
|
||
|
};
|
||
|
|
||
|
# Touch input with Firefox under X11.
|
||
|
environment.sessionVariables = {
|
||
|
MOZ_USE_XINPUT2 = "1";
|
||
|
};
|
||
|
}
|