Files
dotfiles/home/default.nix
2023-01-23 15:43:52 +05:30

18 lines
385 B
Nix

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