dotfiles/common/flake.nix
RingOfStorms (Joshua Bell) 26cc522363 wip refactor
2025-03-17 01:19:40 -05:00

37 lines
728 B
Nix

{
inputs = {
home-manager.url = "github:rycee/home-manager/release-24.11";
ragenix.url = "github:yaxitech/ragenix";
hyprland.url = "github:hyprwm/Hyprland";
cosmic.url = "github:lilyinstarlight/nixos-cosmic";
};
outputs =
{
...
}:
{
nixosModules = {
default =
{
config,
lib,
...
}:
let
ccfg = import ./config.nix;
cfg_path = "${ccfg.custom_config_key}";
cfg = config.${cfg_path};
in
{
imports = [
./options.nix
./boot
./users
./general
];
};
};
};
}