1
0
nixfiles/configuration/common/default.nix

22 lines
280 B
Nix
Raw Normal View History

2020-12-06 16:40:47 +01:00
{ config, pkgs, lib, ... }:
{
2020-12-09 22:49:42 +01:00
imports = [
../../modules
./backup.nix
./locale.nix
./nix.nix
./programs.nix
./ssh.nix
./user.nix
./web.nix
2020-12-09 22:49:42 +01:00
];
services.fstrim.enable = true;
2020-12-09 22:42:39 +01:00
nixpkgs.overlays = [
(import ../../pkgs/overlay.nix)
];
2020-12-06 16:40:47 +01:00
}