Oxidize system with uutils

This commit is contained in:
Bun 2025-03-16 13:02:41 -04:00
parent fd040ca62b
commit 5b14c780cd
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
{
boot.supportedFilesystems = {
btrfs = true;
ntfs = true;
ntfs = lib.mkIf config.system.desktop.enable true;
zfs = lib.mkIf config.system.server.enable true;
};

View file

@ -1,7 +1,7 @@
{ ... }:
{ pkgs, ... }:
{
environment = {
defaultPackages = [ ];
defaultPackages = with pkgs; [ uutils-coreutils-noprefix ];
stub-ld.enable = false;
};