This commit is contained in:
CherryKitten 2024-03-24 19:02:23 +01:00
parent 4a70846459
commit 26ccd2af15
Signed by: sammy
GPG key ID: 98D8F75FB0658276
2 changed files with 0 additions and 57 deletions

View file

@ -1,14 +0,0 @@
{
lib,
config,
pkgs,
...
}: {
users.users = {
sammy = {
isNormalUser = true;
extraGroups = ["networkmanager" "wheel" "docker"];
shell = pkgs.nushell;
};
};
}

View file

@ -1,43 +0,0 @@
{
lib,
config,
pkgs,
...
}: {
imports = [./nvim];
home.username = "sammy";
home.homeDirectory = "/home/sammy";
home.stateVersion = "23.11"; # Please read the comment before changing.
home.packages = with pkgs; [
bat
lsd
gnupg
kitty
tmux
];
programs = {
home-manager.enable = true;
git = {
enable = true;
userName = "CherryKitten";
userEmail = "git@cherrykitten.dev";
signing.key = "0xC01A7CBBA617BD5F";
signing.signByDefault = true;
extraConfig = {
init = {defaultBranch = "main";};
core = {editor = "nvim";};
pull.rebase = true;
};
};
nushell = {
enable = true;
};
};
home.sessionVariables = {
EDITOR = "nvim";
};
}