dotfiles/etc/system/ssd.nix
2005 27d55ea981 🔧 few moderate changes
more polybar capsules
readme: added showcase for alacritty and other stuff
added theme skin for element
alacritty shades of purple theme
user.js: tryed to limit firefox for 165hz but still runs at 60fps
added gimp
added nvim config, soon i'll be switching to it
2024-06-11 20:09:58 +02:00

19 lines
302 B
Nix

{ pkgs, ... }: {
services.smartd = {
enable = true;
# to get notified if my drives are dying
notifications.wall.enable = true;
devices = [
{
# System
device = "/dev/nvme1n1";
}
{
# Data
device = "/dev/nvme0n1";
}
];
};
}