Update Blender and add SSD trimming
This commit is contained in:
parent
0717e2c401
commit
3b524a882e
8 changed files with 27 additions and 19 deletions
|
@ -6,7 +6,7 @@
|
|||
krita
|
||||
inkscape
|
||||
audacity
|
||||
blender_4_2
|
||||
blender_4_3
|
||||
];
|
||||
|
||||
nixpkgs.overlays = [ blender-bin.overlays.default ];
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./btrfs
|
||||
./filesystems
|
||||
./immutable
|
||||
./impermanence
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
./btrfs
|
||||
./fstrim
|
||||
];
|
||||
|
||||
boot.supportedFilesystems = {
|
||||
ntfs = true;
|
||||
zfs = lib.mkForce false;
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.fstrim.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue