restic-rest-server
Simon Bruder 2020-09-11 18:45:46 +02:00
parent 56aa0c8de8
commit b36df78a29
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
3 changed files with 12 additions and 0 deletions

View File

@ -9,6 +9,7 @@
../../profiles/base.nix
../../profiles/dev.nix
../../profiles/gui.nix
../../profiles/laptop.nix
../../users/simon/base.nix
];

3
modules/tlp.nix Normal file
View File

@ -0,0 +1,3 @@
{
services.tlp.enable = true;
}

8
profiles/laptop.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
imports =
[
../modules/tlp.nix
];
}