nix-conf/systems/benzaiten/default.nix

29 lines
624 B
Nix
Raw Normal View History

2023-09-08 14:36:39 +02:00
{ 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
];
2023-09-08 14:36:39 +02:00
2023-12-29 16:43:40 +01:00
jopejoe1 = {
2023-12-30 23:39:33 +01:00
audio = { enable = true; };
2023-12-29 16:43:40 +01:00
bluetooth.enable = true;
local.enable = true;
nix.enable = true;
2024-01-13 18:01:23 +01:00
user = {
jopejoe1.enable = true;
root.enable = true;
};
2024-01-02 20:58:18 +01:00
boot.systemd.enable = true;
2024-01-11 00:19:11 +01:00
ssh.enable = true;
2023-12-29 16:43:40 +01:00
};
2023-12-30 23:39:33 +01:00
environment.systemPackages = with pkgs; [ mixxx ];
2023-09-08 14:36:39 +02:00
time.timeZone = "Europe/Berlin";
}