summaryrefslogtreecommitdiff
path: root/modules/hosts/libreX60/configuration.nix
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2025-04-09 21:09:31 -0500
committerTim Keller <tjkeller.xyz>2025-04-09 21:09:31 -0500
commitd82edfcf8a36f798c73c38dddada6a70a4e1c009 (patch)
tree8e793e8dfd555339736172f32f688dd8c6cffa6b /modules/hosts/libreX60/configuration.nix
parentd54288963941d5aded78d8bf34c198ee78f5ec24 (diff)
downloadnixos-d82edfcf8a36f798c73c38dddada6a70a4e1c009.tar.xz
nixos-d82edfcf8a36f798c73c38dddada6a70a4e1c009.zip
libreX60 configuration now that xf86videointel is fixed!
Diffstat (limited to 'modules/hosts/libreX60/configuration.nix')
-rw-r--r--modules/hosts/libreX60/configuration.nix16
1 files changed, 13 insertions, 3 deletions
diff --git a/modules/hosts/libreX60/configuration.nix b/modules/hosts/libreX60/configuration.nix
index 38500a6..d736763 100644
--- a/modules/hosts/libreX60/configuration.nix
+++ b/modules/hosts/libreX60/configuration.nix
@@ -1,13 +1,23 @@
{ config, lib, pkgs, ... }: {
imports = [ ./hardware-configuration.nix ];
- # Enable extra software pkgs
- software.desktop = {
- office.enable = true;
+ # Use grub
+ bootloader = {
+ loader = "grub";
+ mode = "bios";
+ grub.biosDevice = "/dev/sda";
};
+ # Enable extra software pkgs
+ #software.desktop = {
+ # office.enable = true;
+ #};
+
# Enable network drives
nas.enable = true;
+ # i915 Gpu requires intel driver
+ services.xserver.videoDrivers = [ "intel" ];
+
system.stateVersion = "24.11";
}