2020-05-26 16:43:19 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../platforms/darwin.nix
|
|
|
|
../modules/common.nix
|
2023-10-23 20:51:21 +02:00
|
|
|
# ../modules/games.nix
|
2020-05-26 16:43:19 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
coreutils
|
|
|
|
gnupg
|
|
|
|
nix-prefetch-github
|
|
|
|
pass
|
|
|
|
pinentry_mac
|
|
|
|
];
|
2023-10-23 20:51:21 +02:00
|
|
|
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.stateVersion = "21.11";
|
2020-05-26 16:43:19 +02:00
|
|
|
}
|