working on tagss development env, devenv and added README
This commit is contained in:
parent
4dd8b0acc6
commit
b2e45bf27f
8 changed files with 69 additions and 33 deletions
|
|
@ -1,20 +1,10 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
./users/speccon18.nix
|
||||
];
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
# https://github.com/arouzing/nix/blob/main/hm/sky/home.nix
|
||||
home = {
|
||||
username = "speccon18";
|
||||
homeDirectory = "/home/speccon18";
|
||||
stateVersion = "22.11";
|
||||
};
|
||||
direnv = {
|
||||
enableZshIntegration = true;
|
||||
enable = true;
|
||||
};
|
||||
starship = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
zsh = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
}
|
||||
50
.hm-modules/users/speccon18.nix
Normal file
50
.hm-modules/users/speccon18.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.speccon18 = {
|
||||
home.packages = [
|
||||
firefox
|
||||
vscodium-fhs
|
||||
alacritty
|
||||
starship
|
||||
diff-so-fancy
|
||||
];
|
||||
};
|
||||
programs = {
|
||||
home = {
|
||||
username = "speccon18";
|
||||
homeDirectory = "/home/speccon18";
|
||||
stateVersion = "22.11";
|
||||
};
|
||||
direnv = {
|
||||
enableZshIntegration = true;
|
||||
enable = true;
|
||||
};
|
||||
starship = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
zsh = {
|
||||
enable = lib.mkDefault true;
|
||||
dotDir = ".config/zsh";
|
||||
history = {
|
||||
path = "$ZDOTDIR/.zsh_history";
|
||||
save = 10000000;
|
||||
};
|
||||
};
|
||||
git = {
|
||||
enable = true;
|
||||
userName = "specCon18";
|
||||
userEmail = "specCon18@gmail.com";
|
||||
# signing = {
|
||||
# key = "71F252936D785219";
|
||||
# signByDefault = true;
|
||||
# };
|
||||
diff-so-fancy = {
|
||||
enable = true;
|
||||
changeHunkIndicators = true;
|
||||
};
|
||||
lfs.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue