Files
dotfiles/home/default.nix
Amneesh Singh 7ed47be803 lib: init
also added globalArgs

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-01-23 20:41:42 +05:30

15 lines
334 B
Nix

{ self, inputs, globalArgs, ... }:
{
flake.homeConfigurations = {
natto = inputs.home-manager.lib.homeManagerConfiguration {
modules = [
./natto
./modules/secret.nix
inputs.hyprland.homeManagerModules.default
globalArgs
];
pkgs = self.legacyPackages.x86_64-linux;
};
};
}