diff options
Diffstat (limited to 'users/grfn/system/home/machines')
-rw-r--r-- | users/grfn/system/home/machines/roswell.nix | 12 | ||||
-rw-r--r-- | users/grfn/system/home/machines/yeren.nix | 2 |
2 files changed, 12 insertions, 2 deletions
diff --git a/users/grfn/system/home/machines/roswell.nix b/users/grfn/system/home/machines/roswell.nix index ee3a557fa047..a5a32fa5867f 100644 --- a/users/grfn/system/home/machines/roswell.nix +++ b/users/grfn/system/home/machines/roswell.nix @@ -1,7 +1,7 @@ { pkgs, lib, config, ... }: let - laptopKeyboardId = "5"; + inherit (builtins) pathExists; in { @@ -11,7 +11,9 @@ in ../modules/development.nix ../modules/emacs.nix ../modules/vim.nix - ]; + ../modules/development/readyset.nix + ../modules/tmux.nix + ] ++ (lib.optional (pathExists ../modules/private.nix) ../modules/private.nix); home.packages = with pkgs; [ # System utilities @@ -36,6 +38,12 @@ in nix-prefetch-github nix-review cachix + + # ReadySet stuff + nodejs + mysql80 + + (writeShellScriptBin "xdg-open" "echo xdg-open: \"$@\"") ]; programs.password-store.enable = true; diff --git a/users/grfn/system/home/machines/yeren.nix b/users/grfn/system/home/machines/yeren.nix index 7f5b610f9b0f..167f59c9915b 100644 --- a/users/grfn/system/home/machines/yeren.nix +++ b/users/grfn/system/home/machines/yeren.nix @@ -9,6 +9,8 @@ in imports = [ ../platforms/linux.nix ../modules/common.nix + ../modules/desktop.nix + ../modules/development/agda.nix ../modules/development/readyset.nix ] ++ (lib.optional (pathExists ../modules/private.nix) ../modules/private.nix); |