2025-01-02 15:46:08 +02:00
|
|
|
|
{ ... }:
|
2024-05-29 17:29:02 +03:00
|
|
|
|
let
|
2024-08-05 17:17:33 +03:00
|
|
|
|
host = "generic";
|
2025-05-29 02:18:00 +03:00
|
|
|
|
stateVersion = "25.05";
|
2024-05-29 17:29:02 +03:00
|
|
|
|
|
2024-06-02 05:53:39 +03:00
|
|
|
|
repo = builtins.fetchGit {
|
2025-06-04 00:42:30 +03:00
|
|
|
|
url = "https://forgejo.sinerva.eu/VSinerva/nixos-conf.git";
|
|
|
|
|
name = "nixos-conf-forgejo";
|
2024-06-02 05:53:39 +03:00
|
|
|
|
ref = "main";
|
|
|
|
|
};
|
2024-05-29 17:29:02 +03:00
|
|
|
|
in
|
2024-06-02 16:18:19 +03:00
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
"${repo}/machine-confs/${host}.nix"
|
|
|
|
|
];
|
2024-05-29 17:29:02 +03:00
|
|
|
|
|
2024-06-02 16:18:19 +03: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).
|
|
|
|
|
system.stateVersion = stateVersion; # Did you read the comment?
|
2024-05-29 17:29:02 +03:00
|
|
|
|
}
|