2023-12-15 15:18:36 +00:00
|
|
|
|
{modulesPath, ...}: {
|
2023-06-22 18:08:48 +00:00
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
2024-06-15 14:39:17 +00:00
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
2023-06-22 18:08:48 +00:00
|
|
|
|
|
2023-11-29 14:38:13 +00:00
|
|
|
|
imports = [
|
2024-01-12 19:29:08 +00:00
|
|
|
|
# https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/scan/not-detected.nix
|
2023-11-29 14:38:13 +00:00
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
2024-01-12 19:29:08 +00:00
|
|
|
|
# https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/profiles/qemu-guest.nix
|
2023-11-29 14:38:13 +00:00
|
|
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
2023-12-30 17:21:56 +00:00
|
|
|
|
|
2024-01-13 13:42:34 +00:00
|
|
|
|
./age
|
2023-12-13 13:38:19 +00:00
|
|
|
|
./boot
|
2023-11-29 14:38:13 +00:00
|
|
|
|
./disko
|
|
|
|
|
./networking
|
|
|
|
|
./packages
|
|
|
|
|
./users
|
|
|
|
|
];
|
2023-06-22 18:08:48 +00:00
|
|
|
|
}
|