mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 19:24:03 -06:00
Compare commits
3 commits
af41e3b52a
...
cc5f8deb49
Author | SHA1 | Date | |
---|---|---|---|
![]() |
cc5f8deb49 | ||
![]() |
d2152c6978 | ||
![]() |
8ae385744f |
1 changed files with 29 additions and 8 deletions
|
@ -6,32 +6,33 @@
|
||||||
home.homeDirectory = "/home/aaronh";
|
home.homeDirectory = "/home/aaronh";
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.05";
|
||||||
|
|
||||||
nixpkgs.config = {
|
|
||||||
allowUnfree = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
bat
|
bat
|
||||||
bottom
|
bottom
|
||||||
cargo
|
cargo
|
||||||
|
cyme
|
||||||
|
dua
|
||||||
eza
|
eza
|
||||||
fastfetch
|
fastfetch
|
||||||
fd
|
fd
|
||||||
freshfetch
|
freshfetch
|
||||||
gcc
|
gcc
|
||||||
gnumake
|
gnumake
|
||||||
go
|
|
||||||
himalaya
|
|
||||||
pkg-config
|
pkg-config
|
||||||
rustc
|
rustc
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.bash = {
|
programs.bash = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shellAliases = {
|
|
||||||
home-upgrade = "home-manager switch";
|
|
||||||
};
|
};
|
||||||
# bashrcExtra = "eval `ssh-agent`";
|
|
||||||
|
programs.nushell = {
|
||||||
|
enable = true;
|
||||||
|
shellAliases = {
|
||||||
|
cat = "bat";
|
||||||
|
ls = "eza";
|
||||||
|
lsusb = "cyme";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
@ -66,6 +67,26 @@
|
||||||
|
|
||||||
programs.gh.enable = true;
|
programs.gh.enable = true;
|
||||||
|
|
||||||
|
programs.gh-dash = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
prSections = [
|
||||||
|
{
|
||||||
|
title = "My Pull Requests";
|
||||||
|
filters = "is:open author:@me";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "My Review Requests";
|
||||||
|
filters = "is:open review-requested:@me";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
title = "Assigned PRs";
|
||||||
|
filters = "is:open assignee:@me";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs.helix = {
|
programs.helix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
Loading…
Add table
Add a link
Reference in a new issue