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;
"nikitabobko/tap" = homebrew-nikitabobko;
};
mutableTaps = true;
mutableTaps = false;
};
}
];

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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