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

@ -2,12 +2,15 @@
pkgs.mkShell {
name = "default";
buildInputs = with pkgs; [
git
vim
nixos-anywhere
ssh-to-age
];
buildInputs = builtins.attrValues {
inherit
(pkgs)
git
vim
nixos-anywhere
ssh-to-age
;
};
shellHook = ''
git pull

View file

@ -1,9 +1,12 @@
{pkgs, ...}: {
home.packages = with pkgs; [
ferdium
discord
mattermost
slack
zoom
];
home.packages = builtins.attrValues {
inherit
(pkgs)
ferdium
discord
mattermost
slack
zoom
;
};
}

View file

@ -1,7 +1,10 @@
{pkgs, ...}: {
home.packages = with pkgs; [
spotify
vlc
libreoffice-qt6-fresh
];
home.packages = builtins.attrValues {
inherit
(pkgs)
spotify
vlc
libreoffice-qt6-fresh
;
};
}

View file

@ -10,8 +10,11 @@
in {
home.file.".config/makima/Wacom One by Wacom S Pen.toml".text = makimaConfig;
home.packages = with pkgs; [
makima
gromit-mpx
];
home.packages = builtins.attrValues {
inherit
(pkgs)
makima
gromit-mpx
;
};
}

View file

@ -7,18 +7,20 @@
};
};
environment.systemPackages = with pkgs; [
metasploit
exploitdb
termshark
nmap
dirstalk
hashcat
trufflehog
python313
python313Packages.pyftdi
flashrom
sigrok-cli
pulseview
];
environment.systemPackages = builtins.attrValues {
inherit
(pkgs)
metasploit
exploitdb
termshark
nmap
dirstalk
hashcat
trufflehog
python313
flashrom
sigrok-cli
pulseview
;
};
}

View file

@ -5,11 +5,14 @@
pkgs,
...
}: {
environment.packages = with pkgs; [
inputs.nvix.packages.${pkgs.system}.default
git
openssh
];
environment.packages = builtins.attrValues {
inherit (inputs.nvix.packages.${pkgs.system}) default;
inherit
(pkgs)
git
openssh
;
};
environment.etcBackupExtension = ".bak";

View file

@ -77,7 +77,8 @@
services.cups.enable = true;
environment.systemPackages = with pkgs; [
environment.systemPackages = builtins.attrValues {
inherit (pkgs)
wine
krita
appimage-run
@ -93,6 +94,6 @@
pcsx-rearmed
];
})
supermariowar
supermariowar;
];
}

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"];