mirror of
https://github.com/sstent/vmimages.git
synced 2025-12-06 06:01:51 +00:00
11 lines
277 B
Nix
11 lines
277 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, ... }: {
|
|
security.sudo.wheelNeedsPassword = false;
|
|
|
|
|
|
environment.systemPackages =
|
|
[ pkgs.cifs-utils];
|
|
}
|