.dotfiles/profiles/optional/nixos/work.nix
2024-08-28 17:32:48 +02:00

16 lines
308 B
Nix

{ pkgs, ... }:
{
# boot.initrd.luks.yubikeySupport = true;
programs._1password.enable = true;
programs._1password-gui = {
enable = true;
polkitPolicyOwners = [ "swarsel" ];
};
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
python39
docker
];
}