This commit is contained in:
4DBug
2026-08-24 12:48:35 -05:00
parent 8b56376803
commit a8e75fa4b7
8 changed files with 131 additions and 81 deletions
+1 -2
View File
@@ -3,7 +3,6 @@
nixos = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
comma
fastfetch
git
home-manager
inetutils
@@ -23,4 +22,4 @@
];
};
};
}
}
-2
View File
@@ -3,8 +3,6 @@
nixos = { pkgs, ...}: {
programs.fish = {
shellAliases = {
fetch = "fastfetch --file ~/nix/nix.ans";
box = "ssh box.bug.tools";
unbox = "sh -c 'ssh -N -L \"$1\":0.0.0.0:\"$1\" box.bug.tools &' --";
rebox = "sh -c 'fuser -k \"$1\"/tcp' --";
+20
View File
@@ -0,0 +1,20 @@
{ inputs, ... }: {
den.aspects.fetch = {
homeManager = { ... }: {
imports = [ inputs.fetch.homeManagerModules.default ];
programs.fetch = {
enable = true;
info = [
"os"
"kernel"
"uptime"
];
speed = 1.0;
spin = "xy";
};
};
};
}
-1
View File
@@ -10,7 +10,6 @@
users.users.bug.packages = with pkgs; [
mission-center
baobab
fastfetch
];
programs = {