Compare commits
7 Commits
ad518b9be6
...
1d050b009d
Author | SHA1 | Date | |
---|---|---|---|
1d050b009d
|
|||
453f73f914
|
|||
67854146d3
|
|||
7cdcf0046b
|
|||
91bc2efc96
|
|||
290b6d4447
|
|||
b2bc33561a
|
@@ -11,6 +11,32 @@
|
|||||||
mhutchie.git-graph
|
mhutchie.git-graph
|
||||||
donjayamanne.githistory
|
donjayamanne.githistory
|
||||||
eamodio.gitlens
|
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; };
|
fetch = { prune = true; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lfs.enable = true;
|
||||||
|
|
||||||
includes = [
|
includes = [
|
||||||
{
|
{
|
||||||
condition = "gitdir:~/git.noahknegt.com";
|
condition = "gitdir:~/Repos/git.noahknegt.com/";
|
||||||
path = "~/.config/git/git.noahknegt.com.gitconfig";
|
|
||||||
contents = {
|
contents = {
|
||||||
userEmail = "git@noahknegt.com";
|
user = {
|
||||||
|
email = "git@noahknegt.com";
|
||||||
|
};
|
||||||
|
|
||||||
|
commit = {
|
||||||
|
gpgSign = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
tag = {
|
||||||
|
gpgSign = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
condition = "gitdir:~/open-source";
|
condition = "gitdir:~/Repos/open-source/";
|
||||||
path = "~/.config/git/open-source.gitconfig";
|
|
||||||
contents = {
|
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";
|
username = "noahk";
|
||||||
homeDirectory = "/home/noahk";
|
homeDirectory = "/home/noahk";
|
||||||
|
|
||||||
packages = [
|
packages = with pkgs; [
|
||||||
(pkgs.nerdfonts.override { fonts = [ "SourceCodePro" ]; })
|
(nerdfonts.override { fonts = [ "SourceCodePro" ]; })
|
||||||
|
|
||||||
|
discord
|
||||||
|
spotify
|
||||||
|
|
||||||
|
# Programming
|
||||||
|
gcc
|
||||||
|
rustup
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
fonts.fontconfig.enable = true;
|
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
|
# Enable home-manager and git
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
|
@@ -123,9 +123,6 @@
|
|||||||
papirus-icon-theme
|
papirus-icon-theme
|
||||||
# Menu kind
|
# Menu kind
|
||||||
xfce.xfce4-whiskermenu-plugin
|
xfce.xfce4-whiskermenu-plugin
|
||||||
|
|
||||||
# Spotify
|
|
||||||
spotify
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
|
Reference in New Issue
Block a user