2021-11-06 00:07:40 +01:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
{
|
|
|
|
|
|
imports =
|
|
|
|
|
|
[
|
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
|
./modules/generic.nix
|
2021-11-17 17:05:26 +01:00
|
|
|
|
./modules/invidious.nix
|
2022-01-27 17:18:19 +01:00
|
|
|
|
./modules/nitter.nix
|
2021-12-24 18:27:19 +01:00
|
|
|
|
./modules/borg.nix
|
2022-07-19 16:05:30 +02:00
|
|
|
|
./modules/gitea.nix
|
2021-11-06 00:07:40 +01:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
system.stateVersion = "21.05";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-11-17 10:20:02 +01:00
|
|
|
|
# vim: set et ts=2 sw=2 ai:
|