Compare commits
2 commits
3c818d02b2
...
2e7fe703c8
Author | SHA1 | Date | |
---|---|---|---|
2e7fe703c8 | |||
0aa28a90f2 |
8 changed files with 53 additions and 3 deletions
|
@ -6,6 +6,7 @@
|
||||||
homeManagerModules = {
|
homeManagerModules = {
|
||||||
dev = import ./home/dev;
|
dev = import ./home/dev;
|
||||||
work = import ./home/work;
|
work = import ./home/work;
|
||||||
|
home = import ./home/home;
|
||||||
default = import ./home;
|
default = import ./home;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,31 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
pulumi-bin
|
neovim
|
||||||
|
|
||||||
|
file
|
||||||
|
pciutils # lspci
|
||||||
|
usbutils # lsusb
|
||||||
|
|
||||||
|
btop
|
||||||
|
bottom
|
||||||
|
htop
|
||||||
|
lsof
|
||||||
|
lm_sensors
|
||||||
|
powertop
|
||||||
|
procs
|
||||||
|
|
||||||
|
libqalculate
|
||||||
|
|
||||||
jq
|
jq
|
||||||
|
|
||||||
|
unzip
|
||||||
|
unrar-wrapper
|
||||||
|
p7zip
|
||||||
|
atool
|
||||||
|
|
||||||
|
fastfetch
|
||||||
|
hyfetch
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,8 +13,6 @@
|
||||||
# difftastic.enable = true;
|
# difftastic.enable = true;
|
||||||
# https://difftastic.wilfred.me.uk/git.html
|
# https://difftastic.wilfred.me.uk/git.html
|
||||||
# https://tsdh.org/posts/2022-08-01-difftastic-diffing-with-magit.html
|
# https://tsdh.org/posts/2022-08-01-difftastic-diffing-with-magit.html
|
||||||
userEmail = "esmith@true-helix.com";
|
|
||||||
userName = "Evar Smith";
|
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
init.defaultBranch = "integration";
|
init.defaultBranch = "integration";
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,9 @@
|
||||||
inputs.nix-index-database.hmModules.nix-index
|
inputs.nix-index-database.hmModules.nix-index
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# TODO: consider starship for prompt
|
||||||
|
# https://starship.rs/
|
||||||
|
|
||||||
# NOTE: for fish, I need the
|
# NOTE: for fish, I need the
|
||||||
# system to have programs.fish.enable = true;
|
# system to have programs.fish.enable = true;
|
||||||
# so that the shell integration can find the nix binary properly.
|
# so that the shell integration can find the nix binary properly.
|
||||||
|
|
5
home/home/default.nix
Normal file
5
home/home/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./git.nix
|
||||||
|
];
|
||||||
|
}
|
6
home/home/git.nix
Normal file
6
home/home/git.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
programs.git = {
|
||||||
|
userEmail = "git@evar.dev";
|
||||||
|
userName = "Evar";
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,5 +1,13 @@
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./xfreerdp.nix
|
./xfreerdp.nix
|
||||||
|
./git.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
pulumi-bin
|
||||||
];
|
];
|
||||||
}
|
}
|
6
home/work/git.nix
Normal file
6
home/work/git.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
programs.git = {
|
||||||
|
userEmail = "git@evar.dev";
|
||||||
|
userName = "Evar Smith";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue