nix-conf/systems/tuny/default.nix

35 lines
711 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;
jopejoe1.enable = true;
nix.enable = true;
root.enable = true;
};
2023-12-30 23:39:33 +01:00
networking = { hostName = "tuny"; };
2023-09-08 14:41:01 +02:00
boot.loader.grub.device = "/dev/sda";
2023-09-08 14:36:39 +02:00
programs = {
git = {
enable = true;
lfs.enable = true;
};
};
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";
}