jujutsu: init
This commit is contained in:
parent
da94044b5f
commit
d0037124d5
2 changed files with 22 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
./home-manager.nix
|
./home-manager.nix
|
||||||
./impermanence.nix
|
./impermanence.nix
|
||||||
|
./jujutsu.nix
|
||||||
./locale.nix
|
./locale.nix
|
||||||
./network.nix
|
./network.nix
|
||||||
./nix.nix
|
./nix.nix
|
||||||
|
|
21
modules/base/jujutsu.nix
Normal file
21
modules/base/jujutsu.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
nixpkgs-unstable,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
# Jujutsu version control system.
|
||||||
|
# https://martinvonz.github.io/jj/
|
||||||
|
home-manager.users.caspervk = {
|
||||||
|
programs.jujutsu = {
|
||||||
|
enable = true;
|
||||||
|
package = nixpkgs-unstable.legacyPackages.${pkgs.system}.jujutsu;
|
||||||
|
# https://martinvonz.github.io/jj/latest/config/
|
||||||
|
settings = {
|
||||||
|
user = {
|
||||||
|
name = "Casper V. Kristensen";
|
||||||
|
email = "casper@vkristensen.dk";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue