34 lines
633 B
Nix
34 lines
633 B
Nix
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
# Enable CUPS to print documents.
|
|
#services.printing.enable = true;
|
|
|
|
# Enable firmware
|
|
#hardware.enableAllFirmware = true;
|
|
|
|
# Enable bluetooth
|
|
#hardware.bluetooth.enable = true;
|
|
|
|
# Enable sound with pipewire.
|
|
# security.rtkit.enable = true;
|
|
# services.pipewire = {
|
|
# enable = true;
|
|
# alsa.enable = true;
|
|
# alsa.support32Bit = true;
|
|
# pulse.enable = true;
|
|
# };
|
|
|
|
users.users = {
|
|
leonhard = {
|
|
initialPassword = "leonhard";
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" ];
|
|
};
|
|
};
|
|
|
|
networking.hostName = "desktop";
|
|
}
|