mirror of
https://github.com/sstent/vmimages.git
synced 2026-01-25 14:41:44 +00:00
22 lines
601 B
Nix
22 lines
601 B
Nix
# This is your system's configuration file.
|
|
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
|
|
|
|
{ lib, config, pkgs, inputs, ... }: {
|
|
# You can import other NixOS modules here
|
|
|
|
# imports = [
|
|
# #./hardware-configuration.nix
|
|
# ];
|
|
|
|
# imports = [ inputs.agenix.nixosModules.default ];
|
|
security.sudo.wheelNeedsPassword = false;
|
|
|
|
environment.systemPackages =
|
|
[ pkgs.cifs-utils];
|
|
|
|
# age.secrets.secret1.file = ../secrets/secret1.age;
|
|
# TODO age.identirty needs to be set
|
|
# environment.etc."secret1".source = config.age.secrets.secret1.path;
|
|
|
|
}
|