18 lines
242 B
Nix
18 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
|
||
|
];
|
||
|
}
|