Add jujutsu package
This commit is contained in:
@@ -1,2 +0,0 @@
|
|||||||
Host git.simmer505.com
|
|
||||||
Port 222
|
|
||||||
|
|||||||
@@ -24,7 +24,6 @@
|
|||||||
|
|
||||||
home.file.".config/waybar".source = ./dotfiles/waybar;
|
home.file.".config/waybar".source = ./dotfiles/waybar;
|
||||||
home.file.".config/alacritty/alacritty.toml".source = ./dotfiles/alacritty/alacritty.toml;
|
home.file.".config/alacritty/alacritty.toml".source = ./dotfiles/alacritty/alacritty.toml;
|
||||||
home.file.".ssh/config".source = ./dotfiles/ssh/config;
|
|
||||||
|
|
||||||
# Fix for slow steam download speeds https://old.reddit.com/r/linux_gaming/comments/16e1l4h/slow_steam_downloads_try_this/
|
# Fix for slow steam download speeds https://old.reddit.com/r/linux_gaming/comments/16e1l4h/slow_steam_downloads_try_this/
|
||||||
home.file.".steam/steam/steam_dev.cfg".source = ./dotfiles/steam/steam_dev.cfg;
|
home.file.".steam/steam/steam_dev.cfg".source = ./dotfiles/steam/steam_dev.cfg;
|
||||||
|
|||||||
@@ -14,13 +14,32 @@ in
|
|||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
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;
|
enable = true;
|
||||||
userName = "Ethan Simmons";
|
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
|
curl
|
||||||
wget
|
wget
|
||||||
git
|
git
|
||||||
|
jujutsu
|
||||||
killall
|
killall
|
||||||
vim
|
vim
|
||||||
eza
|
eza
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ in
|
|||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
xournalpp
|
xournalpp
|
||||||
libreoffice
|
libreoffice
|
||||||
anki
|
|
||||||
] ++ optional cfg.citrix citrix;
|
] ++ optional cfg.citrix citrix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user