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
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue