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