mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
16 lines
217 B
Nix
16 lines
217 B
Nix
{ pkgs, ... }: {
|
|
hardware = {
|
|
xpadneo = {
|
|
enable = true;
|
|
};
|
|
};
|
|
programs = {
|
|
steam = {
|
|
enable = true;
|
|
extraCompatPackages = with pkgs; [
|
|
proton-ge-bin
|
|
];
|
|
};
|
|
};
|
|
}
|