diff --git a/home/root.nix b/home/root.nix index 266a894..aee753e 100644 --- a/home/root.nix +++ b/home/root.nix @@ -1,6 +1,12 @@ +# Configuration for root user. +# TODO this file is sorta an exception to my repo organization, it should +# probably be somewhere else. { config, lib, pkgs, ... }@args: { imports = [ - ./comma.nix + ./. ]; + config = { + nixfiles.programs.comma.enable = true; + }; }