summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--darwin-common.nix8
-rw-r--r--hosts/bear/configuration.nix5
-rw-r--r--hosts/kenosis/configuration.nix17
-rw-r--r--hosts/kenosis/legacy.nix27
4 files changed, 38 insertions, 19 deletions
diff --git a/darwin-common.nix b/darwin-common.nix
index aecc6ea..c03c055 100644
--- a/darwin-common.nix
+++ b/darwin-common.nix
@@ -6,6 +6,7 @@
}: {
imports = [
./zsh.nix
+ ./vim.nix
];
# List packages installed in system profile. To search by name, run:
@@ -16,9 +17,13 @@
lazygit
fastfetch
git
- vim-full
senpai
wget
+ curl
+ direnv
+ pass
+ passExtensions.pass-otp
+ passExtensions.pass-update
];
programs.zsh.enable = true;
@@ -85,6 +90,7 @@
taps = [
];
brews = [
+ "openssh"
];
casks = [
"keepingyouawake"
diff --git a/hosts/bear/configuration.nix b/hosts/bear/configuration.nix
index 677e462..dc96c7a 100644
--- a/hosts/bear/configuration.nix
+++ b/hosts/bear/configuration.nix
@@ -15,12 +15,7 @@
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = with pkgs; [
- nvim.neovim
- senpai
mpv
- pass
- passExtensions.pass-otp
- passExtensions.pass-update
];
programs.ssh = {
diff --git a/hosts/kenosis/configuration.nix b/hosts/kenosis/configuration.nix
index ffda55d..be792e9 100644
--- a/hosts/kenosis/configuration.nix
+++ b/hosts/kenosis/configuration.nix
@@ -5,6 +5,10 @@
nvim,
...
}: {
+ imports = [
+ # ./legacy.nix
+ ];
+
networking = {
computerName = "kenosis";
hostName = "kenosis";
@@ -15,19 +19,12 @@
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = with pkgs; [
- # work tools
go
- jdk17
- (google-cloud-sdk.withExtraComponents [
- google-cloud-sdk.components.gke-gcloud-auth-plugin
- google-cloud-sdk.components.beta
- ])
nodejs
yarn
kubectl
ffmpeg
dbeaver-bin
- ngrok
claude-code
air
@@ -35,13 +32,11 @@
librewolf
lazygit
fastfetch
- nvim.neovim
git
go-swag
blender
temporal-cli
corepack
- direnv
(python313.withPackages (ps:
with ps; [
numpy
@@ -58,14 +53,10 @@
taps = [
];
brews = [
- "openssh"
- "redis"
];
casks = [
- "keepingyouawake"
"feishu"
"surfshark"
- "scroll-reverser"
"google-chrome"
"firefox"
"chatgpt"
diff --git a/hosts/kenosis/legacy.nix b/hosts/kenosis/legacy.nix
new file mode 100644
index 0000000..5d3ed93
--- /dev/null
+++ b/hosts/kenosis/legacy.nix
@@ -0,0 +1,27 @@
+{
+ config,
+ pkgs,
+ ...
+}: {
+ environment.systemPackages = with pkgs; [
+ jdk17
+ (google-cloud-sdk.withExtraComponents [
+ google-cloud-sdk.components.gke-gcloud-auth-plugin
+ google-cloud-sdk.components.beta
+ ])
+ ngrok
+ ];
+
+ homebrew = {
+ enable = true;
+ user = "andrew";
+
+ taps = [
+ ];
+ brews = [
+ "redis"
+ ];
+ casks = [
+ ];
+ };
+}