Compare commits
No commits in common. "d6c331b940f40cd139324def53c761d6e8c4d4e9" and "f25e8b716e6a59b103b497cc7d82fd7bea1797e8" have entirely different histories.
d6c331b940
...
f25e8b716e
|
@ -77,12 +77,12 @@
|
|||
nixvim.homeManagerModules.nixvim
|
||||
];
|
||||
};
|
||||
"gabe@gv-workstation" = home-manager.lib.homeManagerConfiguration {
|
||||
"gabe@workstation" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
||||
extraSpecialArgs = {inherit inputs outputs;};
|
||||
# > Our main home-manager configuration file <
|
||||
modules = [
|
||||
./hosts/gabe-gv-workstation.nix
|
||||
./hosts/gabe-workstation.nix
|
||||
nixvim.homeManagerModules.nixvim
|
||||
];
|
||||
};
|
||||
|
|
|
@ -24,9 +24,9 @@
|
|||
home.username = "gabe";
|
||||
home.homeDirectory = "/home/gabe";
|
||||
imports = [
|
||||
../../modules/home-manager/terminal
|
||||
../../modules/home-manager
|
||||
../../modules/home-manager/kittty
|
||||
../../modules/home-manager/terminal/terminal.nix
|
||||
../../modules/home-manager/home-manager.nix
|
||||
../../modules/home-manager/kittty/kitty.nix
|
||||
inputs.nixvim.homeManagerModules.nixvim
|
||||
];
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
home.username = "gabe";
|
||||
home.homeDirectory = "/home/gabe";
|
||||
imports = [
|
||||
../modules/home-manager/terminal
|
||||
../modules/home-manager
|
||||
../modules/home-manager/terminal/terminal.nix
|
||||
../modules/home-manager/home-manager.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
home.username = "gabe";
|
||||
home.homeDirectory = "/home/gabe";
|
||||
imports = [
|
||||
../modules/home-manager/terminal
|
||||
../modules/home-manager
|
||||
../modules/home-manager/terminal/terminal.nix
|
||||
../modules/home-manager/home-manager.nix
|
||||
];
|
||||
}
|
|
@ -24,9 +24,9 @@
|
|||
home.username = "gabe";
|
||||
home.homeDirectory = "/home/gabe";
|
||||
imports = [
|
||||
../../modules/home-manager/terminal
|
||||
../../modules/home-manager
|
||||
../../modules/home-manager/kittty
|
||||
../../modules/home-manager/terminal/terminal.nix
|
||||
../../modules/home-manager/home-manager.nix
|
||||
../../modules/home-manager/kittty/kitty.nix
|
||||
inputs.nixvim.homeManagerModules.nixvim
|
||||
];
|
||||
}
|
||||
|
|
8
justfile
8
justfile
|
@ -1,16 +1,16 @@
|
|||
default:
|
||||
just --list
|
||||
|
||||
nixos target=`hostname`:
|
||||
nixos target:
|
||||
sudo nixos-rebuild --flake .#{{target}} switch
|
||||
|
||||
home-manager target=(`whoami`+"@"+`hostname`):
|
||||
home-manager target:
|
||||
home-manager --flake .#{{target}} switch
|
||||
|
||||
check-home-manager target=(`whoami`+"@"+`hostname`):
|
||||
check-home-manager target:
|
||||
home-manager build --no-out-link --flake .#{{target}}
|
||||
|
||||
bootstrap-home-manager target=(`whoami`+"@"+`hostname`):
|
||||
bootstrap-home-manager target:
|
||||
nix run --extra-experimental-features "nix-command flakes" --no-write-lock-file github:nix-community/home-manager/ -- --extra-experimental-features "nix-command flakes" --flake .#{{target}} switch
|
||||
|
||||
format:
|
||||
|
|
|
@ -32,13 +32,7 @@
|
|||
graph = "log --graph --topo-order --all --pretty=format:'%C(auto)%h %C(cyan)%an %C(blue)%ar %C(auto)%d %s'";
|
||||
recent = "branch --sort=-committerdate --format='%(committerdate:relative)%09%(refname:short)'";
|
||||
};
|
||||
delta = {
|
||||
enable = true;
|
||||
options = {
|
||||
side-by-side = true;
|
||||
line-numbers = true;
|
||||
};
|
||||
};
|
||||
delta.enable = true;
|
||||
# difftastic.enable=true;
|
||||
# difftastic.background="dark";
|
||||
userEmail = config.host.git.profile.email;
|
||||
|
@ -74,7 +68,7 @@
|
|||
if config.host.git.workProfile.enable
|
||||
then [
|
||||
{
|
||||
condition = "gitdir:~/work/**";
|
||||
condition = "gitdir:~/work/";
|
||||
contents.user.email = config.host.git.workProfile.email;
|
||||
}
|
||||
]
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
./gitsigns.nix
|
||||
./which-key.nix
|
||||
./telescope.nix
|
||||
./treesitter
|
||||
./cmp
|
||||
./lsp
|
||||
./treesitter/treesitter.nix
|
||||
./cmp/cmp.nix
|
||||
./lsp/lsp.nix
|
||||
];
|
||||
}
|
|
@ -39,13 +39,13 @@
|
|||
};
|
||||
|
||||
imports = [
|
||||
./nushell
|
||||
./nushell/nushell.nix
|
||||
./zsh.nix
|
||||
./git.nix
|
||||
./starship.nix
|
||||
./voice.nix
|
||||
./nvim
|
||||
./zellij
|
||||
./nvim/nvim.nix
|
||||
./zellij/zellij.nix
|
||||
];
|
||||
|
||||
programs = {
|
Loading…
Reference in a new issue