pointfichiers/hosts/Zephyrus/default.nix

29 lines
430 B
Nix

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