ctucx.git: nixfiles

ctucx' nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35 
36 
37 
38 
39 
40 
41 
42 
43 
44 
45 
46 
{ config, lib, pkgs, ... }:

{

  imports = [
    ./hardware-configuration.nix
  ];

  deployment.allowLocalDeployment = true;

  ctucxConfig.monitoring.exporters.enable = true;

  # Use the systemd-boot EFI boot loader.
  boot = {
    loader.systemd-boot.enable = true;
    loader.efi.canTouchEfiVariables = true;

    kernelParams   = [ "fbcon=rotate:1" ];
    kernelPackages = pkgs.linuxPackages_latest;
    kernelPatches  = [
      {
        name = "fix DSI init";
        patch = ./0001-drm-i915-dsi-Go-back-to-the-previous-INIT_OTP-DISPLA.patch;
      }
    ];
  };

  networking.wireless.iwd = {
    enable = true;
    settings = {
      IPv6 = {
        Enabled = true;
      };
      Settings = {
        AutoConnect = true;
      };
    };
  };

  services.openssh.enable = true;

  system.stateVersion = "23.11";
  home-manager.users.leah.home.stateVersion = "23.11";

}