added a bunch of nixos modules
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
{
|
||||
...
|
||||
}:
|
||||
{
|
||||
flake.modules.nixos.core = { pkgs, ... }: {
|
||||
programs.steam.enable = true;
|
||||
hardware.
|
||||
};
|
||||
}
|
||||
@@ -4,6 +4,8 @@
|
||||
imports = [
|
||||
self.modules.nixos.cemu
|
||||
self.modules.nixos.steam
|
||||
self.modules.nixos.xbox-controller
|
||||
self.modules.nixos.gpu-screenrecorder
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{ ... }: {
|
||||
flake.modules.nixos.gpu-screenrecorder = { pkgs, ... }: {
|
||||
programs.gpu-screen-recorder.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
gpu-screen-recorder
|
||||
killall
|
||||
libnotify
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{ ... }: {
|
||||
|
||||
flake.modules.nixos.lutris = { pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
lutris
|
||||
];
|
||||
};
|
||||
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{ ... }: {
|
||||
flake.modules.nixos.xbox-controller = {
|
||||
hardware.xone.enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user