uhhh
idkkkk
This commit is contained in:
24
modules/nixos/slippi.nix
Normal file
24
modules/nixos/slippi.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let cfg = config.sydnix.slippi;
|
||||
in {
|
||||
options.sydnix.slippi = {
|
||||
enable = lib.mkEnableOption "Slippi meleeeeee";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.appimage = {
|
||||
enable = true;
|
||||
binfmt = true;
|
||||
};
|
||||
|
||||
services.udev = {
|
||||
enable = true;
|
||||
# Change the mode (as in chmod) of my third-party Wii U GameCube adapter
|
||||
# device to 666.
|
||||
extraRules = ''
|
||||
SUBSYSTEMS=="usb", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="0337", MODE="0666"
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user