mirror of
https://github.com/RGBCube/ncc
synced 2025-07-28 02:27:44 +00:00
12 lines
186 B
Nix
12 lines
186 B
Nix
{ lib, ... }: let
|
|
inherit (lib) enabled;
|
|
in {
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
|
|
sharedModules = [{
|
|
xdg = enabled {};
|
|
}];
|
|
};
|
|
}
|