Merge branch 'master' of github.com:aciceri/nixfleet
This commit is contained in:
commit
b1b7b24717
9 changed files with 87 additions and 197 deletions
|
@ -6,6 +6,6 @@
|
|||
}: {
|
||||
boot.binfmt.emulatedSystems = ["aarch64-linux" "i686-linux" "riscv64-linux"];
|
||||
nix.extraOptions = ''
|
||||
extra-platforms = aarch64-linux arm-linux i686-linux
|
||||
extra-platforms = aarch64-linux arm-linux i686-linux riscv64-linux
|
||||
'';
|
||||
}
|
||||
|
|
28
modules/remote-xfce/default.nix
Normal file
28
modules/remote-xfce/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
# nixpkgs.config.pulseaudio = true;
|
||||
# services.xrdp = {
|
||||
# enable = true;
|
||||
# defaultWindowManager = "xfce-session";
|
||||
# };
|
||||
# services.xserver = {
|
||||
# enable = true;
|
||||
# desktopManager = {
|
||||
# xterm.enable = false;
|
||||
# xfce.enable = true;
|
||||
# };
|
||||
# displayManager.defaultSession = "xfce";
|
||||
# };
|
||||
environment.systemPackages = with pkgs; [sunshine superTuxKart];
|
||||
|
||||
boot.kernelModules = ["uinput"];
|
||||
|
||||
users.groups.input.members = ["ccr"];
|
||||
|
||||
services.udev.extraRules = ''
|
||||
KERNEL=="uinput", SUBSYSTEM=="misc", OPTIONS+="static_node=uinput", TAG+="uaccess"' |
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue