Update Blender and add SSD trimming

This commit is contained in:
Jimbo 2024-11-20 13:55:44 -05:00
parent 0717e2c401
commit 3b524a882e
8 changed files with 27 additions and 19 deletions

View file

@ -6,7 +6,7 @@
krita
inkscape
audacity
blender_4_2
blender_4_3
];
nixpkgs.overlays = [ blender-bin.overlays.default ];

View file

@ -11,7 +11,7 @@
};
shellAliases = {
# NixOS aliases
flakedate = "doas nix flake update /etc/nixos";
flakedate = "doas nix flake update --flake /etc/nixos";
nhs = "doas nh os switch -R";
nhu = "flakedate && nhs";
ns = "nix-shell -p";

View file

@ -1,7 +1,6 @@
{ ... }:
{
imports = [
./btrfs
./filesystems
./immutable
./impermanence

View file

@ -1,5 +1,10 @@
{ lib, ... }:
{
imports = [
./btrfs
./fstrim
];
boot.supportedFilesystems = {
ntfs = true;
zfs = lib.mkForce false;

View file

@ -0,0 +1,4 @@
{ ... }:
{
services.fstrim.enable = true;
}