all repos — dotfiles @ dd95f11e7a5e473f513a87dc2d8450fb35a65ea4

my *nix dotfiles

programs/default.nix (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
{ config
, pkgs
, self
, ...
}:

{

  imports = [
    ./firefox.nix
    ./common.nix
  ];

  programs = {
    gpg.enable = true;
  };
}