Preparing to switch to flakes

This commit is contained in:
2025-08-03 15:42:02 -04:00
parent b69b0853d3
commit 94f0ce50ae
5 changed files with 84 additions and 12 deletions

View File

@@ -6,6 +6,15 @@
};
config = lib.mkIf config.grapfical-desktop.enable {
option1.enable = true;
# Enable the X11 windowing system.
services.xserver.enable = true;
# Hyprland
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
programs.waybar.enable = true;
}
}

13
nixosModules/default.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs, lib, config, ... }: {
imports =
[
./bundles/graphical-desktop.nix
# ./bundles/gaming.nix
# ./bundles/docker-server.nix
# ./bundles/terminal.nix
# ./bundles/csharp-devel.nix
# ./bundles/sound-music.nix
# ./bundles/local-ai.nix
# ./bundles/editors.nix
];
}