Compare commits
7 Commits
ad518b9be6
...
1d050b009d
Author | SHA1 | Date | |
---|---|---|---|
1d050b009d
|
|||
453f73f914
|
|||
67854146d3
|
|||
7cdcf0046b
|
|||
91bc2efc96
|
|||
290b6d4447
|
|||
b2bc33561a
|
@@ -11,6 +11,32 @@
|
||||
mhutchie.git-graph
|
||||
donjayamanne.githistory
|
||||
eamodio.gitlens
|
||||
|
||||
# Rust plugins
|
||||
rust-lang.rust-analyzer
|
||||
tamasfe.even-better-toml
|
||||
fill-labs.dependi
|
||||
];
|
||||
|
||||
userSettings = {
|
||||
# Theme
|
||||
"workbench.iconTheme" = "catppuccin-mocha";
|
||||
"workbench.colorTheme" = "Catppuccin Mocha";
|
||||
"workbench.sideBar.location" = "right";
|
||||
"workbench.activityBar.location" = "bottom";
|
||||
|
||||
# Settings for all files
|
||||
"files.autoSave" = "off";
|
||||
|
||||
# Git settings
|
||||
"git.autofetch" = true;
|
||||
"git.confirmSync" = false;
|
||||
"git.alwaysSignOff" = true;
|
||||
"git.pruneOnFetch" = true;
|
||||
|
||||
|
||||
# Nix lang settings
|
||||
"[nix]"."editor.tabSize" = 2;
|
||||
};
|
||||
};
|
||||
}
|
@@ -22,19 +22,40 @@
|
||||
fetch = { prune = true; };
|
||||
};
|
||||
|
||||
lfs.enable = true;
|
||||
|
||||
includes = [
|
||||
{
|
||||
condition = "gitdir:~/git.noahknegt.com";
|
||||
path = "~/.config/git/git.noahknegt.com.gitconfig";
|
||||
condition = "gitdir:~/Repos/git.noahknegt.com/";
|
||||
contents = {
|
||||
userEmail = "git@noahknegt.com";
|
||||
user = {
|
||||
email = "git@noahknegt.com";
|
||||
};
|
||||
|
||||
commit = {
|
||||
gpgSign = true;
|
||||
};
|
||||
|
||||
tag = {
|
||||
gpgSign = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
condition = "gitdir:~/open-source";
|
||||
path = "~/.config/git/open-source.gitconfig";
|
||||
condition = "gitdir:~/Repos/open-source/";
|
||||
contents = {
|
||||
userEmail = "git@noahknegt.com";
|
||||
user = {
|
||||
email = "git@noahknegt.com";
|
||||
signingKey = "~/.ssh/id_open_source.pub";
|
||||
};
|
||||
|
||||
commit = {
|
||||
gpgSign = true;
|
||||
};
|
||||
|
||||
tag = {
|
||||
gpgSign = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
|
@@ -49,17 +49,20 @@
|
||||
username = "noahk";
|
||||
homeDirectory = "/home/noahk";
|
||||
|
||||
packages = [
|
||||
(pkgs.nerdfonts.override { fonts = [ "SourceCodePro" ]; })
|
||||
packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "SourceCodePro" ]; })
|
||||
|
||||
discord
|
||||
spotify
|
||||
|
||||
# Programming
|
||||
gcc
|
||||
rustup
|
||||
];
|
||||
};
|
||||
|
||||
fonts.fontconfig.enable = true;
|
||||
|
||||
# Add stuff for your user as you see fit:
|
||||
# programs.neovim.enable = true;
|
||||
# home.packages = with pkgs; [ steam ];
|
||||
|
||||
# Enable home-manager and git
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
|
@@ -123,9 +123,6 @@
|
||||
papirus-icon-theme
|
||||
# Menu kind
|
||||
xfce.xfce4-whiskermenu-plugin
|
||||
|
||||
# Spotify
|
||||
spotify
|
||||
];
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
|
Reference in New Issue
Block a user