pointfichiers/hosts/Zephyrus/default.nix
2024-09-20 13:16:34 +00:00

26 lines
356 B
Nix

{
pkgs,
lib,
config,
...
}: {
imports = [
./hardware-configuration.nix
];
# Set your time zone.
time.timeZone = "Europe/Paris";
# User config
users.groups.gaspard = {
name = "gaspard";
};
users.users.gaspard = {
isNormalUser = true;
extraGroups = [
"wheel"
"video"
];
group = "gaspard";
};
}