nix-conf/systems/benzaiten/default.nix
2024-01-15 19:56:37 +01:00

28 lines
624 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
nixos-hardware.nixosModules.common-cpu-intel
nixos-hardware.nixosModules.common-gpu-nvidia
nixos-hardware.nixosModules.common-pc-laptop
nixos-hardware.nixosModules.common-pc-laptop-hdd
];
jopejoe1 = {
audio = { enable = true; };
bluetooth.enable = true;
local.enable = true;
nix.enable = true;
user = {
jopejoe1.enable = true;
root.enable = true;
};
boot.systemd.enable = true;
ssh.enable = true;
};
environment.systemPackages = with pkgs; [ mixxx ];
time.timeZone = "Europe/Berlin";
}