nix/os/containers: add new profile
This commit is contained in:
parent
d049d728a7
commit
247096c808
3 changed files with 13 additions and 2 deletions
|
@ -6,8 +6,8 @@ let
|
||||||
in args // {
|
in args // {
|
||||||
config = { pkgs, ... }: {
|
config = { pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
|
../profiles/containers/configuration.nix
|
||||||
../profiles/common/user.nix
|
../profiles/common/user.nix
|
||||||
../modules/ddclient-ovh.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.firewall.enable = false;
|
networking.firewall.enable = false;
|
||||||
|
|
|
@ -5,7 +5,7 @@ let
|
||||||
in args // {
|
in args // {
|
||||||
config = { pkgs, ... }: {
|
config = { pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
../modules/ddclient-ovh.nix
|
../profiles/containers/configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.firewall.enable = false;
|
networking.firewall.enable = false;
|
||||||
|
|
11
nix/os/profiles/containers/configuration.nix
Normal file
11
nix/os/profiles/containers/configuration.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(import ../../../overlay.nix)
|
||||||
|
];
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
../../modules/ddclient-ovh.nix
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue