diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-03 14:52:00 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-03 14:52:00 -0700 |
commit | 814a495e9c74e3211c6b6640397111115832207b (patch) | |
tree | 1daeffdaf1665468da128d900ec696b54c456209 /hosts/tahoe | |
parent | firefox: set duckduckgo as default search engine (diff) | |
download | world-814a495e9c74e3211c6b6640397111115832207b.tar.gz |
create a new role for navidrome
Apply the role to tahoe.
Diffstat (limited to 'hosts/tahoe')
-rw-r--r-- | hosts/tahoe/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hosts/tahoe/default.nix b/hosts/tahoe/default.nix index 5a746dd..9e41ed2 100644 --- a/hosts/tahoe/default.nix +++ b/hosts/tahoe/default.nix @@ -1,6 +1,6 @@ { config, pkgs, hostname, ... }: - -{ +let my = import ../roles; +in { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ../profiles/nas.nix @@ -25,6 +25,8 @@ }; }; + my.roles = { music-server.enable = true; }; + networking.private-wireguard.enable = true; networking.firewall.enable = false; |