todo and configs

This commit is contained in:
Tao Tien 2024-03-15 12:47:44 -07:00
parent ac926b4011
commit acae27684e
8 changed files with 37 additions and 28 deletions

View file

@ -1,70 +0,0 @@
{
pkgs,
inputs,
...
}: {
imports = [
(import ./helix.nix {inherit pkgs inputs;})
./cargo.nix
];
programs = {
jujutsu = {
enable = true;
settings = {
user = {
name = "Tao Tien";
email = "29749622+taotien@users.noreply.github.com";
};
ui = {
default-command = "log";
};
};
package = inputs.jujutsu.packages.${pkgs.system}.default;
};
git = {
enable = true;
userName = "Tao Tien";
userEmail = "29749622+taotien@users.noreply.github.com";
};
nushell = {
enable = true;
configFile.source = ./config.nu;
envFile.source = ./env.nu;
};
starship = {
enable = true;
enableNushellIntegration = true;
settings = builtins.fromTOML (builtins.readFile ./starship.toml);
};
wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
zellij = {
enable = true;
settings = {};
};
zoxide = {
enable = true;
enableNushellIntegration = true;
};
};
services = {
pueue = {
enable = true;
settings = {};
};
};
home.username = "tao";
home.homeDirectory = "/home/tao";
home.stateVersion = "23.11";
}