clean up some instances of with scopes

This commit is contained in:
TheWanderingCrow 2025-07-28 16:16:37 -04:00
parent e494d77078
commit 1bcb51b487
8 changed files with 73 additions and 52 deletions

View file

@ -6,15 +6,18 @@
}: let
loginKey = builtins.readFile ./installer.pub;
in {
environment.systemPackages = with pkgs; [
inputs.nvix.packages.${pkgs.system}.default
vim
git
just
curl
wget
disko
];
environment.systemPackages = builtins.attrValues {
inherit (inputs.nvix.packages.${pkgs.system}) default;
inherit
(pkgs)
vim
git
just
curl
wget
disko
;
};
boot.supportedFilesystems = lib.mkForce ["zfs" "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs"];