d98e47cbcf
Change-Id: Ibcf21617a1cee66c157644712918bcd9bb390228 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9827 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
20 lines
315 B
Nix
20 lines
315 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
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
home.stateVersion = "21.11";
|
|
}
|