about summary refs log tree commit diff
path: root/home/machines
diff options
context:
space:
mode:
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
+  ];
+}