Add shared system config module
This commit is contained in:
parent
4454eb84fb
commit
718ca864e3
35
modules/nixos/nixos/default.nix
Normal file
35
modules/nixos/nixos/default.nix
Normal 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
|
||||||
|
|
||||||
|
]);
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user