craige: added gopass

This commit is contained in:
Serĉanto de Scio 2021-07-09 15:04:25 +10:00
parent afb07534cd
commit e4311d8b5c
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA
2 changed files with 11 additions and 0 deletions

View file

@ -10,6 +10,7 @@
../profiles/cron-craige.nix # Provide Craige's cron jobs
../profiles/daedalus.nix # The open source cryptocurrency wallet for ADA
../profiles/desktop-feeds.nix # Tools for news feeds and podcasts
../profiles/desktopCraige.nix # Craige's desktop tools and apps
../profiles/haskell-dev.nix # Haskel dev environment
../profiles/host_common.nix # Common host configuration options
../profiles/iohk.nix # IOHK environment

View file

@ -0,0 +1,10 @@
# Craige's desktop requirements
{ config, pkgs, ... }:
{
# Craige's Desktop Packages
environment.systemPackages = with pkgs; [
gopass # password file manager
];
}