Staging #19

Merged
steveej merged 14 commits from staging into master 2019-02-04 08:26:53 +00:00
3 changed files with 13 additions and 2 deletions
Showing only changes of commit 247096c808 - Show all commits

View file

@ -6,8 +6,8 @@ let
in args // {
config = { pkgs, ... }: {
imports = [
../profiles/containers/configuration.nix
../profiles/common/user.nix
../modules/ddclient-ovh.nix
];
networking.firewall.enable = false;

View file

@ -5,7 +5,7 @@ let
in args // {
config = { pkgs, ... }: {
imports = [
../modules/ddclient-ovh.nix
../profiles/containers/configuration.nix
];
networking.firewall.enable = false;

View file

@ -0,0 +1,11 @@
{ ... }:
{
nixpkgs.overlays = [
(import ../../../overlay.nix)
];
imports = [
../../modules/ddclient-ovh.nix
];
}