diff --git a/machines/nunotaba/configuration.nix b/machines/nunotaba/configuration.nix index 040a679..b998c25 100644 --- a/machines/nunotaba/configuration.nix +++ b/machines/nunotaba/configuration.nix @@ -9,6 +9,7 @@ ../../profiles/base.nix ../../profiles/dev.nix ../../profiles/gui.nix + ../../profiles/laptop.nix ../../users/simon/base.nix ]; diff --git a/modules/tlp.nix b/modules/tlp.nix new file mode 100644 index 0000000..4522cfc --- /dev/null +++ b/modules/tlp.nix @@ -0,0 +1,3 @@ +{ + services.tlp.enable = true; +} diff --git a/profiles/laptop.nix b/profiles/laptop.nix new file mode 100644 index 0000000..dbe185b --- /dev/null +++ b/profiles/laptop.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: + +{ + imports = + [ + ../modules/tlp.nix + ]; +}