DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 7ba6e1b2774d5e9efd92f7ba6f5d85f8193adfc3 nix-arta/modules/hosts/ws/w/_nixos/default.nix -rw-r--r-- 412 bytes
7ba6e1b2Jonni Liljamo w: init 15 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{...}: {
  imports = [
    ./hardware-configuration.nix
    ./lanzaboote.nix
    ./not-managed-by-modules-yet.nix
  ];

  boot.loader.systemd-boot.enable = true;
  boot.loader.systemd-boot.configurationLimit = 9;
  boot.loader.efi.canTouchEfiVariables = true;

  networking.hostId = "9e77d80e";
  networking.networkmanager.enable = true;

  time.timeZone = "Europe/Helsinki";

  system.stateVersion = "24.11";
}