mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-16 04:35:07 +01:00
more small things
This commit is contained in:
parent
6ab5c496f3
commit
a3d63eb272
4 changed files with 17 additions and 13 deletions
|
|
@ -16,7 +16,7 @@
|
|||
};
|
||||
extraConfig = {
|
||||
core.autocrlf = false;
|
||||
core.editor = "nvim";
|
||||
core.editor = "${pkgs.neovim}/bin/nvim";
|
||||
pull.ff = "only";
|
||||
push.autoSetupRemote = true;
|
||||
init.defaultBranch = "main";
|
||||
|
|
|
|||
|
|
@ -44,22 +44,31 @@ in
|
|||
git-absorb
|
||||
git-crypt
|
||||
htop
|
||||
hyperfine
|
||||
inferno
|
||||
jetbrains.idea-ultimate
|
||||
linuxKernel.packages.linux_6_1.perf
|
||||
mold # For global .cargo/config.toml
|
||||
nixpkgs-fmt
|
||||
obsidian
|
||||
obs-studio
|
||||
obsidian
|
||||
postman
|
||||
prismlauncher
|
||||
python3
|
||||
ripgrep
|
||||
rnix-lsp
|
||||
rustup-toolchain-install-master
|
||||
samply
|
||||
spotify
|
||||
];
|
||||
|
||||
home.file.".cargo/config.toml" = {
|
||||
text = ''
|
||||
[target.x86_64-unknown-linux-gnu]
|
||||
linker = "clang"
|
||||
rustflags = ["-Clink-arg=-fuse-ld=${pkgs.mold}/bin/mold", "-Ctarget-cpu=native"]
|
||||
'';
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
programs.fish = {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscode;
|
||||
package = pkgs.vscodium;
|
||||
enableUpdateCheck = false;
|
||||
mutableExtensionsDir = false;
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
jnoortheen.nix-ide
|
||||
usernamehw.errorlens
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue