2024-09-23 18:54:14 +02:00
|
|
|
{pkgs, ...}: {
|
|
|
|
imports = [
|
|
|
|
./hardware.nix
|
|
|
|
./wayland.nix
|
2024-09-26 00:31:19 +02:00
|
|
|
# ./media.nix
|
2024-09-23 18:54:14 +02:00
|
|
|
];
|
|
|
|
# These are some standard packages I want to have installed on every system, regardless of type or use case.
|
2025-04-06 22:45:09 +02:00
|
|
|
environment.systemPackages = builtins.attrValues {
|
|
|
|
inherit
|
|
|
|
(pkgs)
|
|
|
|
calc # Calculator device
|
2025-05-12 10:53:19 +02:00
|
|
|
# coreutils-full # All of the GNU coreutils
|
2025-04-06 22:45:09 +02:00
|
|
|
curl # I sometimes need to curl stuff
|
|
|
|
git # take a guess
|
|
|
|
inetutils # internet stuff I need/want on every system.
|
|
|
|
wget
|
|
|
|
unzip # zipping and unzipping stuff
|
|
|
|
zip
|
|
|
|
util-linux
|
|
|
|
;
|
|
|
|
};
|
2024-09-23 18:54:14 +02:00
|
|
|
}
|