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

11
home/profiles/gui.nix Normal file
View File

@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
let
cfg = config.profiles.base;
in {
options.profiles.gui = {
enable = lib.mkEnableOption "Whether or not to install programs with user-interfaces";
};
}