Merge main

This commit is contained in:
Martin Larsson 2025-04-16 16:38:27 +02:00
parent 04ffc6f57e
commit f15bbc57e2
7 changed files with 14 additions and 8 deletions

View file

@ -151,7 +151,7 @@
"homebrew/bundle" = homebrew-bundle; "homebrew/bundle" = homebrew-bundle;
"nikitabobko/tap" = homebrew-nikitabobko; "nikitabobko/tap" = homebrew-nikitabobko;
}; };
mutableTaps = true; mutableTaps = false;
}; };
} }
]; ];

View file

@ -6,7 +6,7 @@
# accordingly, and then commit it. # accordingly, and then commit it.
home = { home = {
# Stub values for demonstration. Override these in local branch. # Stub values for demonstration. Override these in local branch.
username = "nixos"; username = "martin.larsson";
homeDirectory = "/home/nixos"; homeDirectory = "/Users/martin.larsson";
}; };
} }

View file

@ -3,6 +3,8 @@
}: }:
{ {
system = { system = {
stateVersion = "24.11"; stateVersion = 5;
}; };
nix-homebrew.user = "martin.larsson";
} }

View file

@ -8,6 +8,10 @@
])) ]))
pcre pcre
ccache ccache
mkdocs
# jdk
# jdk21
]; ];
}; };
} }

View file

@ -112,8 +112,8 @@ in
ninja ninja
tldr tldr
nerd-fonts.caskaydia-mono nerd-fonts.caskaydia-mono
clang # clang
clang-tools # clang-tools
lldb lldb
nodejs nodejs
tree-sitter tree-sitter

View file

@ -65,7 +65,7 @@
enableKeyMapping = true; enableKeyMapping = true;
nonUS.remapTilde = true; nonUS.remapTilde = true;
remapCapsLockToEscape = true; remapCapsLockToEscape = true;
swapLeftCtrlAndFn = true; swapLeftCtrlAndFn = false;
}; };
activationScripts.applications.text = activationScripts.applications.text =
let let

View file

@ -16,6 +16,6 @@ return {
lazy = true, lazy = true,
opts = {}, opts = {},
keys = { keys = {
{ "<leader>g", function() require("neogit").open({ kind = "vsplit" }) end } { "<leader>g", function() require("neogit").open() end }
}, },
} }