dotfiles/common/flake.nix
RingOfStorms (Joshua Bell) 2087ee1015 WIP refactor
2025-03-17 22:44:10 -05:00

33 lines
596 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
./general
./boot
./users
./programs
];
};
};
};
}