9 lines
145 B
Nix
9 lines
145 B
Nix
{lib, ...}: {
|
|
imports = [
|
|
./thunar.nix
|
|
./steam.nix
|
|
];
|
|
|
|
thunar.enable = lib.mkDefault true;
|
|
steam.enable = lib.mkDefault false;
|
|
}
|