mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-23 01:05:38 +00:00
10 lines
221 B
Nix
10 lines
221 B
Nix
{ pkgs, lib, gui, identity, ... }: {
|
|
|
|
config = lib.mkIf gui.enable {
|
|
nixpkgs.config.allowUnfree = true;
|
|
home-manager.users.${identity.user} = {
|
|
home.packages = with pkgs; [ _1password-gui ];
|
|
};
|
|
};
|
|
}
|