tvl-depot/home/machines/dobharchu.nix
Griffin Smith 9036dc7c32 Beginnings of config for Darwin machines
Split out a platforms/ directory with a linux.nix and darwin.nix, and
starting splitting things out between the two
2020-05-26 10:43:19 -04:00

17 lines
242 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
../platforms/darwin.nix
../modules/common.nix
../modules/games.nix
];
home.packages = with pkgs; [
coreutils
gnupg
nix-prefetch-github
pass
pinentry_mac
];
}