9036dc7c32
Split out a platforms/ directory with a linux.nix and darwin.nix, and starting splitting things out between the two
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
|
|
];
|
|
}
|