mirror of
https://github.com/sstent/vmimages.git
synced 2025-12-06 06:01:51 +00:00
19 lines
535 B
Nix
19 lines
535 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 inputs.agenix.packages.x86_64-linux.default ];
|
|
age.secrets.secret1.file = ../../secrets/secret1.age;
|
|
|
|
}
|