move home-manager config to subdirectory

This commit is contained in:
Daniel Olsen
2024-08-17 03:17:40 +02:00
parent 08930ba021
commit a6f2ac0868
23 changed files with 1 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
let
cfg = config.profiles.non-nixos;
in {
options.profiles.non-nixos = {
enable = lib.mkEnableOption "Whether or not the profile is running on non-nixos";
};
}