Initial commit
This commit is contained in:
commit
69d741b98b
29 changed files with 718 additions and 0 deletions
6
homeManagerModules/cliPrograms/bun.nix
Normal file
6
homeManagerModules/cliPrograms/bun.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }: {
|
||||
programs.bun = {
|
||||
enable = true;
|
||||
enableGitIntegration = true;
|
||||
};
|
||||
}
|
||||
6
homeManagerModules/cliPrograms/fastfetch.nix
Normal file
6
homeManagerModules/cliPrograms/fastfetch.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }: {
|
||||
programs.fastfetch = {
|
||||
enable = true;
|
||||
#todo add fastfetch config
|
||||
};
|
||||
}
|
||||
11
homeManagerModules/cliPrograms/git.nix
Normal file
11
homeManagerModules/cliPrograms/git.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ ... }: {
|
||||
#todo config
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userEmail = "85629831+veneficium42@users.noreply.github.com";
|
||||
userName = "Veneficium";
|
||||
extraConfig = {
|
||||
init.defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
}
|
||||
7
homeManagerModules/cliPrograms/hyfetch.nix
Normal file
7
homeManagerModules/cliPrograms/hyfetch.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ ... }: {
|
||||
imports = [ ./fastfetch.nix ];
|
||||
programs.hyfetch = {
|
||||
enable = true;
|
||||
#todo add hyfetch config
|
||||
};
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
#todo make sure this on only if gnome is setup correctly
|
||||
nativeMessagingHosts = [ pkgs.gnome-browser-connector ];
|
||||
};
|
||||
}
|
||||
3
homeManagerModules/desktopPrograms/vesktop.nix
Normal file
3
homeManagerModules/desktopPrograms/vesktop.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = [ pkgs.vesktop ];
|
||||
}
|
||||
41
homeManagerModules/desktopPrograms/vscodium.nix
Normal file
41
homeManagerModules/desktopPrograms/vscodium.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{ pkgs, ... }: {
|
||||
#The VSCoderrrrrrrr
|
||||
#codepilled nixmaxxer
|
||||
#god I love tumblr
|
||||
#tumblrpilled mememaxxer
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
enableUpdateCheck = false;
|
||||
enableExtensionUpdateCheck = false;
|
||||
mutableExtensionsDir = false;
|
||||
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
ms-vscode.cpptools
|
||||
ms-vscode-remote.remote-ssh
|
||||
mhutchie.git-graph
|
||||
pkief.material-icon-theme
|
||||
pkief.material-product-icons
|
||||
oderwat.indent-rainbow
|
||||
bierner.markdown-emoji
|
||||
bierner.emojisense
|
||||
jnoortheen.nix-ide
|
||||
rust-lang.rust-analyzer
|
||||
];
|
||||
|
||||
userSettings = {
|
||||
"workbench.iconTheme" = "material-icon-theme";
|
||||
"workbench.productIconTheme" = "material-product-icons";
|
||||
"editor.formatOnSave" = true;
|
||||
"workbench.sideBar.location" = "right";
|
||||
"workbench.startupEditor" = "welcomePageInEmptyWorkbench";
|
||||
"nix.enableLanguageServer" = true;
|
||||
"C_Cpp.clang_format_fallbackStyle" = "LLVM";
|
||||
"editor.fontFamily" = "FiraCode Nerd Font Mono";
|
||||
"editor.fontLigatures" = true;
|
||||
"terminal.integrated.fontFamily" = "FiraCode Nerd Font";
|
||||
"terminal.integrated.fontSize" = 14;
|
||||
"terminal.integrated.fontWeight" = 500;
|
||||
};
|
||||
};
|
||||
}
|
||||
6
homeManagerModules/starship.nix
Normal file
6
homeManagerModules/starship.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ ... }: {
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
}
|
||||
16
homeManagerModules/zsh.nix
Normal file
16
homeManagerModules/zsh.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ ... }: {
|
||||
#todo config
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
completionInit.enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [
|
||||
"systemd"
|
||||
"bun"
|
||||
"common-aliases"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue