about summary refs log tree commit diff
path: root/users/sterni/machines/ingeborg/default.nix
blob: 3012e5f4af9eaf7a263f48f57169304bd735bf28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, lib, pkgs, depot, ... }:

{
  imports = [
    # Basic settings
    ../../modules/common.nix
    # These modules touch things related to booting (filesystems, initrd network…)
    ./hardware.nix
    ./network.nix
  ];

  config = {
    system.stateVersion = "24.05";
  };
}