a787840ce2
Refactor `modules/desktop/options.nix` to improve code readability through consistent indentation and whitespace management. Simplified the conditional logic for `home-manager.extraSpecialArgs` to remove unnecessary complexity. Clean up host configurations by removing commented-out code, removing unnecessary whitespace, and flattening nested attribute sets into single-line declarations where appropriate.
15 lines
290 B
Nix
15 lines
290 B
Nix
{ self, inputs, ... }:
|
|
{
|
|
flake.nixosModules.uConsoleHome =
|
|
{ self, ... }:
|
|
{
|
|
imports = [ self.nixosModules.desktopHomeBase ];
|
|
|
|
chiasson.users.extraModules.olivier = [
|
|
{
|
|
chiasson.home.hardware.uconsoleGamepad.enable = true;
|
|
}
|
|
];
|
|
};
|
|
}
|