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,88 +21,89 @@
}; };
home-manager.users.tasia = {pkgs, ...}: { home-manager.users.tasia = {pkgs, ...}: {
home.file = { home = {
".zshrc".source = ../../dotfiles/.shellrc; file = {
".bashrc".source = ../../dotfiles/.shellrc; ".zshrc".source = ../../dotfiles/.shellrc;
".config/btop/btop.conf".source = ../../dotfiles/btop.conf; ".bashrc".source = ../../dotfiles/.shellrc;
# ".gitconfig".source = ../../dotfiles/.gitconfig; ".config/btop/btop.conf".source = ../../dotfiles/btop.conf;
# ".gitconfig".source = ../../dotfiles/.gitconfig;
".librewolf/librewolf.overrides.cfg".source = ../../dotfiles/librewolf.overrides.cfg; ".librewolf/librewolf.overrides.cfg".source = ../../dotfiles/librewolf.overrides.cfg;
};
shellAliases = {
e = "nvim";
ee = "nvim $(fzf)";
g = "git";
l = "ls";
lg = "lazygit";
ll = "ls -al";
done = "curl -d 'Done' ntfy.sh/tasiaiso_done";
rebuild = "sudo nixos-rebuild switch --flake .#$(cat /etc/hostname)";
};
packages = with pkgs; [
# Development
rustc
cargo
nodejs
yarn
nodePackages.node-gyp
nodePackages.node-pre-gyp
openssl
nodePackages.node-pre-gyp
jdk17
# Dektop apps
bitwarden
simplex-chat-desktop
picard
kleopatra
qbittorrent
tor-browser
ssb-patchwork
pixelorama
# System utilities
gocryptfs
sirikali
rpi-imager
protonvpn-gui
protonvpn-cli
# home-manager
lsof
appimage-run
atool
httpie
cowsay
stress
lazygit
ssb-patchwork
xonotic
# android-tools
# endless-sky
# gnucash
# obs-studio
# kdenlive
# wireshark
# android-studio
# swig
# radicle-cli
# opensnitch-ui
# hurl https://github.com/Orange-OpenSource/hurl
amfora
dive
inxi
# revolt-desktop
];
# The state version is required and should stay at the version you
# originally installed.
stateVersion = "24.05";
}; };
home.shellAliases = {
e = "nvim";
ee = "nvim $(fzf)";
g = "git";
l = "ls";
lg = "lazygit";
ll = "ls -al";
done = "curl -d 'Done' ntfy.sh/tasiaiso_done";
rebuild = "sudo nixos-rebuild switch --flake .#$(cat /etc/hostname)";
};
home.packages = with pkgs; [
# Development
rustc
cargo
nodejs
yarn
nodePackages.node-gyp
nodePackages.node-pre-gyp
openssl
# Dektop apps
bitwarden
simplex-chat-desktop
picard
kleopatra
qbittorrent
tor-browser
ssb-patchwork
# System utilities
gocryptfs
sirikali
rpi-imager
protonvpn-gui
protonvpn-cli
home-manager
atool
httpie
cowsay
stress
lazygit
ssb-patchwork
xonotic
# android-tools
# endless-sky
# gnucash
# obs-studio
# kdenlive
# wireshark
# appimage-run
# android-studio
# swig
# radicle-cli
# opensnitch-ui
# superTuxKart
# qgis
amfora
dive
inxi
revolt-desktop
lsof
pixelorama
nodePackages.node-pre-gyp
jdk17
];
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "24.05";
}; };
} }