This commit is contained in:
Tasia Iso 2024-05-29 22:41:28 +02:00
parent 6992004429
commit ad8137b7e6
Signed by: tasiaiso
SSH key fingerprint: SHA256:KiRjUay5C9i6objsEOIycygBHn54pDBB3Lj7fyJ0Elw
3 changed files with 86 additions and 82 deletions

View file

@ -67,6 +67,8 @@
# Nvidia drivers # Nvidia drivers
"nvidia-x11" "nvidia-x11"
"nvidia-settings" "nvidia-settings"
# osu!
"osu-lazer-bin-2024.412.1" "osu-lazer-bin-2024.412.1"
"osu-lazer-bin" "osu-lazer-bin"
]; ];

View file

@ -18,7 +18,8 @@
ripgrep ripgrep
jq jq
yq yq
neofetch fastfetch
cpufetch
tldr tldr
# dust # dust
powertop powertop

View file

@ -21,7 +21,8 @@
}; };
home-manager.users.tasia = {pkgs, ...}: { home-manager.users.tasia = {pkgs, ...}: {
home.file = { home = {
file = {
".zshrc".source = ../../dotfiles/.shellrc; ".zshrc".source = ../../dotfiles/.shellrc;
".bashrc".source = ../../dotfiles/.shellrc; ".bashrc".source = ../../dotfiles/.shellrc;
".config/btop/btop.conf".source = ../../dotfiles/btop.conf; ".config/btop/btop.conf".source = ../../dotfiles/btop.conf;
@ -30,7 +31,7 @@
".librewolf/librewolf.overrides.cfg".source = ../../dotfiles/librewolf.overrides.cfg; ".librewolf/librewolf.overrides.cfg".source = ../../dotfiles/librewolf.overrides.cfg;
}; };
home.shellAliases = { shellAliases = {
e = "nvim"; e = "nvim";
ee = "nvim $(fzf)"; ee = "nvim $(fzf)";
g = "git"; g = "git";
@ -42,7 +43,7 @@
rebuild = "sudo nixos-rebuild switch --flake .#$(cat /etc/hostname)"; rebuild = "sudo nixos-rebuild switch --flake .#$(cat /etc/hostname)";
}; };
home.packages = with pkgs; [ packages = with pkgs; [
# Development # Development
rustc rustc
cargo cargo
@ -51,6 +52,8 @@
nodePackages.node-gyp nodePackages.node-gyp
nodePackages.node-pre-gyp nodePackages.node-pre-gyp
openssl openssl
nodePackages.node-pre-gyp
jdk17
# Dektop apps # Dektop apps
bitwarden bitwarden
@ -60,6 +63,7 @@
qbittorrent qbittorrent
tor-browser tor-browser
ssb-patchwork ssb-patchwork
pixelorama
# System utilities # System utilities
gocryptfs gocryptfs
@ -67,7 +71,9 @@
rpi-imager rpi-imager
protonvpn-gui protonvpn-gui
protonvpn-cli protonvpn-cli
home-manager # home-manager
lsof
appimage-run
atool atool
httpie httpie
@ -84,25 +90,20 @@
# obs-studio # obs-studio
# kdenlive # kdenlive
# wireshark # wireshark
# appimage-run
# android-studio # android-studio
# swig # swig
# radicle-cli # radicle-cli
# opensnitch-ui # opensnitch-ui
# superTuxKart # hurl https://github.com/Orange-OpenSource/hurl
# qgis
amfora amfora
dive dive
inxi inxi
revolt-desktop # revolt-desktop
lsof
pixelorama
nodePackages.node-pre-gyp
jdk17
]; ];
# The state version is required and should stay at the version you # The state version is required and should stay at the version you
# originally installed. # originally installed.
home.stateVersion = "24.05"; stateVersion = "24.05";
};
}; };
} }