feat: restructure and move apps into their own configs (#2)

This commit is contained in:
Uttarayan
2025-02-05 17:09:33 +05:30
committed by GitHub
parent e25f478315
commit 0a26d94f77
52 changed files with 662 additions and 482 deletions

18
home/auth.nix Normal file
View File

@@ -0,0 +1,18 @@
{
pkgs,
inputs,
device,
...
}: {
# import the home-manager module
imports = [inputs.onepassword-shell-plugins.hmModules.default];
programs = {
_1password-shell-plugins = {
# enable 1Password shell plugins for bash, zsh, and fish shell
enable = device.hasGui;
# the specified packages as well as 1Password CLI will be
# automatically installed and configured to use shell plugins
# plugins = with pkgs; [awscli2 cachix cargo];
};
};
}