config/hosts/nixos/hasselknippe/configuration.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

2024-02-17 03:49:30 +01:00
{ config, pkgs, lib, ... }:
{
# Bootloader
#boot.loader.systemd-boot.enable = true;
#boot.loader.efi.canTouchEfiVariables = true;
services.xserver.displayManager.autoLogin.enable = true;
services.xserver.displayManager.autoLogin.user = "pbsds";
# tmp: https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229
systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false;
imports = [
2024-02-25 21:26:02 +01:00
#./hardware-configuration.nix
../../../profiles/auto-upgrade.nix
../../../profiles/upgrade-diff.nix
#../../../profiles/sshd.nix
#../../../profiles/no-suspend.nix
2024-02-17 03:49:30 +01:00
../../../users/pbsds
2024-02-17 03:49:30 +01:00
#../../../profiles/mounts/freon-nfs.nix
#../../../profiles/mounts/reidun-nfs.nix
#../../../profiles/mounts/meconium-nfs.nix
2024-02-17 03:49:30 +01:00
../../../profiles/shell.nix
2024-02-17 03:49:30 +01:00
2024-10-19 20:40:40 +02:00
../../../profiles/desktop
../../../profiles/desktop/gnome # configures gdm
../../../profiles/desktop/sound/pipewire.nix
2024-02-17 03:49:30 +01:00
#../../../profiles/desktop/steam.nix
#../../../profiles/desktop/lutris.nix
#../../../profiles/desktop/flatpak.nix
2024-02-17 03:49:30 +01:00
../../../profiles/known-hosts.nix
2024-02-17 03:49:30 +01:00
];
networking.firewall.allowedTCPPorts = [ 57621 ]; # spotify local discovery
networking.networkmanager.enable = true;
# TODO: remove? Move?
programs.dconf.enable = true;
}