summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/system
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-08-30 17:18:42 -0700
committerFuwn <[email protected]>2024-08-30 17:18:42 -0700
commitf011065b76e37a76222919c333005559eda8dbde (patch)
treed56b550369591048c9062344e49ca3e79a291b14 /home/ebisu/fortune/system
parentupdate (diff)
downloadnixos-config-f011065b76e37a76222919c333005559eda8dbde.tar.xz
nixos-config-f011065b76e37a76222919c333005559eda8dbde.zip
swag
Diffstat (limited to 'home/ebisu/fortune/system')
-rw-r--r--home/ebisu/fortune/system/default.nix8
-rw-r--r--home/ebisu/fortune/system/shell/fish/default.nix5
-rw-r--r--home/ebisu/fortune/system/tracing.nix8
3 files changed, 11 insertions, 10 deletions
diff --git a/home/ebisu/fortune/system/default.nix b/home/ebisu/fortune/system/default.nix
index c8ae875..fd68070 100644
--- a/home/ebisu/fortune/system/default.nix
+++ b/home/ebisu/fortune/system/default.nix
@@ -8,18 +8,12 @@
./shell
./terminal
./virtualisation
+ ./tracing.nix
./variables.nix
./xdg.nix
];
home.packages = with pkgs; [
- # bpftrace
libsForQt5.ksshaskpass
];
-
- # services.ananicy = {
- # enable = true;
- # package = pkgs.ananicy-cpp;
- # rulesProvider = pkgs.ananicy-rules-cachyos;
- # };
}
diff --git a/home/ebisu/fortune/system/shell/fish/default.nix b/home/ebisu/fortune/system/shell/fish/default.nix
index bcc0def..d58b065 100644
--- a/home/ebisu/fortune/system/shell/fish/default.nix
+++ b/home/ebisu/fortune/system/shell/fish/default.nix
@@ -33,17 +33,16 @@
end
set -l config_home (set -q XDG_CONFIG_HOME; and echo $XDG_CONFIG_HOME; or echo $HOME/.config)
-
set HISTSIZE -1
set HISTFILESIZE -1
set SAVEHIST -1
bind \ce edit_command_buffer
- zoxide init fish | source
-
cat ~/.cache/wal/sequences
+ zoxide init fish | source
+ direnv hook fish | source
starship init fish | source
'';
diff --git a/home/ebisu/fortune/system/tracing.nix b/home/ebisu/fortune/system/tracing.nix
new file mode 100644
index 0000000..9a96847
--- /dev/null
+++ b/home/ebisu/fortune/system/tracing.nix
@@ -0,0 +1,8 @@
+{ pkgs, ... }:
+{
+ home.packages = with pkgs; [
+ strace
+ bpftrace
+ lsof
+ ];
+}