DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 352e04e92a0875f1d3fd3638e0e8f339af23d51e nix-arta/modules/hosts/ws/w/_nixos/default.nix -rw-r--r-- 412 bytes
352e04e9Jonni Liljamo swaylock: init and use on w 11 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";
}