nixos-config/nixos/system/all/default.nix

32 lines
707 B
Nix
Raw Normal View History

2019-12-20 05:54:26 +01:00
{ lib, config, pkgs, ... }: {
2021-09-25 11:07:09 +02:00
2019-10-24 02:20:38 +02:00
imports = [
2021-09-25 11:07:09 +02:00
../../modules
2022-10-13 10:19:23 +02:00
../../components/network
2021-12-28 16:19:29 +01:00
./defaults.nix
2019-10-24 02:20:38 +02:00
./grub.nix
./packages.nix
./borg-scripts.nix
2019-10-24 02:20:38 +02:00
];
2021-11-01 12:16:18 +01:00
# default backup excludes
backup.exclude = [ ".git" ".stfolder" ".stversions" ];
2019-10-24 02:20:38 +02:00
# Shell configuration
# -------------------
2023-07-02 21:25:49 +02:00
#programs.custom = {
# bash.enable = true;
# #zsh.enable = true;
#};
2019-10-24 02:20:38 +02:00
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
2023-12-23 00:11:26 +01:00
#system.stateVersion = lib.mkDefault "19.03"; # Did you read the comment?
2019-10-24 02:20:38 +02:00
}