1
0
Fork 0

Add experimental "mizuki" configuration

This commit is contained in:
Avery 2025-02-24 21:07:36 +01:00
parent 25ddde2a9b
commit 762e95d309
Signed by: Avery
GPG key ID: B684FD451B692E04
5 changed files with 86 additions and 2 deletions

View file

@ -0,0 +1,30 @@
{ ... }: {
programs = {
git = {
enable = true;
extraConfig = {
init.defaultBranch = "main";
merge.tool = "nvim -d";
};
userEmail = "aveeryy@protonmail.com";
userName = "Avery";
};
lazygit = {
enable = true;
settings = {
gui.theme = {
activeBorderColor = [ "#89b4fa" "bold" ];
inactiveBorderColor = [ "#a6adc8" ];
optionsTextColor = [ "#89b4fa" ];
selectedLineBgColor = [ "#313244" ];
selectedRangeBgColor = [ "#313244" ];
cherryPickedCommitBgColor = [ "#45475a" ];
cherryPickedCommitFgColor = [ "#89b4fa" ];
unstagedChangesColor = [ "#f38ba8" ];
defaultFgColor = [ "#cdd6f4" ];
searchingActiveBorderColor = [ "#f9e2af" ];
};
};
};
};
}

22
hosts/mizuki/nixos.nix Normal file
View file

@ -0,0 +1,22 @@
{ config, lib, pkgs }: {
environment.shells = with pkgs; [ zsh ];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
security.sudo.enable = true;
users = {
defaultUserShell = pkgs.zsh;
users.avery.extraGroups = [ "wheel" ];
};
wsl = {
enable = true;
defaultUser = "avery";
};
system.stateVersion = "24.11";
}