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-x11"
"nvidia-settings"
# osu!
"osu-lazer-bin-2024.412.1"
"osu-lazer-bin"
];

View file

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

View file

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