mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
417623965e
also change theme to colorscheme
10 lines
219 B
Nix
10 lines
219 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
config = lib.mkIf config.gui.enable {
|
|
nixpkgs.config.allowUnfree = true;
|
|
home-manager.users.${config.user} = {
|
|
home.packages = with pkgs; [ _1password-gui ];
|
|
};
|
|
};
|
|
}
|