17 lines
319 B
Nix
17 lines
319 B
Nix
{ self, inputs, ... }:
|
|
{
|
|
flake.nixosModules.uConsoleHome =
|
|
{ self, ... }:
|
|
{
|
|
imports = [ self.nixosModules.desktopHomeBase ];
|
|
|
|
chiasson.users.extraModules.olivier = [
|
|
{
|
|
chiasson.home = {
|
|
hardware.uconsoleGamepad.enable = true;
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|