a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
17 lines
242 B
Nix
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
|
|
];
|
|
}
|