mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-10 17:34:05 -05:00
clean up some instances of with scopes
This commit is contained in:
parent
e494d77078
commit
1bcb51b487
8 changed files with 73 additions and 52 deletions
|
|
@ -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"];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue