mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 02:20:14 +01:00
11 lines
176 B
Nix
11 lines
176 B
Nix
{ config, ... }:
|
|
{
|
|
config = {
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
sharedModules = import ./shared-modules.nix;
|
|
};
|
|
};
|
|
}
|