nix-conf/systems/tuny/default.nix
2023-09-08 14:41:01 +02:00

49 lines
1.1 KiB
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
networking.hostName = "tuny";
boot.loader.grub.device = "/dev/sda";
programs = {
git = {
enable = true;
lfs.enable = true;
};
};
users.users.musicp = {
isNormalUser = true;
description = "Music Player";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
firefox
];
};
environment.systemPackages = with pkgs; [
mixxx
];
networking.networkmanager.enable = true;
time.timeZone = "Europe/Berlin";
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the GNOME Desktop Environment.
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
# Enable automatic login for the user.
services.xserver.displayManager.autoLogin.enable = true;
services.xserver.displayManager.autoLogin.user = "musicp";
# Workaround for GNOME autologin: https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229
systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false;
}