mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-06 11:36:34 +01:00
28 lines
623 B
Nix
28 lines
623 B
Nix
|
{ pkgs, config, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ./hardware.nix ];
|
||
|
|
||
|
networking.networkmanager.enable = true;
|
||
|
networking.hostName = "yokai";
|
||
|
|
||
|
time.timeZone = "Europe/Berlin";
|
||
|
hardware.opengl.enable = true;
|
||
|
|
||
|
programs = {
|
||
|
dconf.enable = true;
|
||
|
droidcam.enable = true;
|
||
|
xwayland.enable = true;
|
||
|
};
|
||
|
|
||
|
boot = {
|
||
|
# Boot loader configutation
|
||
|
loader = {
|
||
|
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default)
|
||
|
grub.enable = false;
|
||
|
# Enables the generation of /boot/extlinux/extlinux.conf
|
||
|
generic-extlinux-compatible.enable = true;
|
||
|
systemd-boot.configurationLimit = 10;
|
||
|
};
|
||
|
}
|