Add shared system config module

This commit is contained in:
Andreas Schaafsma 2024-12-10 03:53:46 +01:00
parent 4454eb84fb
commit 718ca864e3

View File

@ -0,0 +1,35 @@
############################################
#
# Shared System Configuration module that's always enabled by default courtesy of snowfall lib
#
############################################
{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkIf;
inherit (lib.my-namespace) enabled;
in {
config = {
boot = {
};
console = {
};
environment = {
systemPackages =
(with pkgs; [
age
wget
sops
bitwarden
bitwarden-cli
cowsay
]);
};
};
}