Add jujutsu package
This commit is contained in:
@@ -14,13 +14,32 @@ in
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
|
||||
jujutsu = {
|
||||
enable = mkOption {
|
||||
description = "Whether to install and configure jujutsu";
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.git = {
|
||||
|
||||
config = {
|
||||
programs.git = mkIf cfg.enable {
|
||||
enable = true;
|
||||
userName = "Ethan Simmons";
|
||||
userEmail = "eesimmons9105@gmail.com";
|
||||
userEmail = "contact@esimmons.me";
|
||||
};
|
||||
programs.jujutsu = mkIf cfg.jujutsu.enable {
|
||||
enable = true;
|
||||
settings = {
|
||||
user = {
|
||||
name = "Ethan Simmons";
|
||||
email = "contact@esimmons.me";
|
||||
};
|
||||
ui.paginate = "never";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -15,6 +15,7 @@ in
|
||||
curl
|
||||
wget
|
||||
git
|
||||
jujutsu
|
||||
killall
|
||||
vim
|
||||
eza
|
||||
|
||||
@@ -14,7 +14,6 @@ in
|
||||
environment.systemPackages = with pkgs; [
|
||||
xournalpp
|
||||
libreoffice
|
||||
anki
|
||||
] ++ optional cfg.citrix citrix;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user