tvl-depot/users/grfn/system/home/machines/dobharchu.nix
Griffin Smith d98e47cbcf fix(grfn/home): Fix home build for darwin
Change-Id: Ibcf21617a1cee66c157644712918bcd9bb390228
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9827
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
2023-11-06 21:06:50 +00:00

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";
}