about summary refs log tree commit diff
path: root/home/machines
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2020-05-26T14·43-0400
committerGriffin Smith <root@gws.fyi>2020-05-26T14·43-0400
commit9036dc7c32739d302cdd6fe51fe2d01418a99c9d (patch)
tree2f67188616193c8b9b3de011d0bc546aca68a5ee /home/machines
parent86b5f58ca51bfb91de4cd29e66b781d5e035db7a (diff)
Beginnings of config for Darwin machines
Split out a platforms/ directory with a linux.nix and darwin.nix, and
starting splitting things out between the two
Diffstat (limited to 'home/machines')
-rw-r--r--home/machines/chupacabra.nix7
-rw-r--r--home/machines/dobharchu.nix17
2 files changed, 24 insertions, 0 deletions
diff --git a/home/machines/chupacabra.nix b/home/machines/chupacabra.nix
index c0d1fce431fb..86be9b361ddf 100644
--- a/home/machines/chupacabra.nix
+++ b/home/machines/chupacabra.nix
@@ -2,6 +2,13 @@
 let
   laptopKeyboardId = "25";
 in {
+  imports = [
+    ../platforms/linux.nix
+
+    ../modules/common.nix
+    ../modules/games.nix
+  ];
+
   system.machine = {
     wirelessInterface = "wlp59s0";
     i3FontSize = 9;
diff --git a/home/machines/dobharchu.nix b/home/machines/dobharchu.nix
new file mode 100644
index 000000000000..0b8503a00e98
--- /dev/null
+++ b/home/machines/dobharchu.nix
@@ -0,0 +1,17 @@
+{ 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
+  ];
+}