darwin: fix

This commit is contained in:
Sridhar Ratnakumar 2024-12-20 11:51:06 -05:00
parent cde3db64de
commit e95363bcc5

View file

@ -1,5 +1,5 @@
# Configuration common to all macOS systems
{ flake, ... }:
{ flake, pkgs, ... }:
let
inherit (flake) config inputs;
inherit (inputs) self;
@ -13,6 +13,7 @@ in
};
home-manager.users.${config.me.username} = { };
home-manager.sharedModules = [
inputs.nix-index.homeManagerModules.${pkgs.system}.default
self.homeModules.default
self.homeModules.darwin-only
];