dotfiles/common/flake.nix
RingOfStorms (Joshua Bell) c10446db21 wip
2025-03-17 11:23:22 -05:00

32 lines
571 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,
...
}:
{
imports = [
./options.nix
./boot
./users
./general
];
};
};
};
}