28 lines
599 B
Nix
28 lines
599 B
Nix
# User inputs
|
|
|
|
/**
|
|
Inputs providing modules or packages for user configurations. Check next chapters to learn more.
|
|
*/
|
|
{
|
|
/**
|
|
System for managing a user environment.
|
|
Allows declarative configuration of user specific (non-global) packages and dotfiles.
|
|
*/
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
};
|
|
/**
|
|
Theming framework for NixOS
|
|
*/
|
|
stylix = {
|
|
url = "github:nix-community/stylix";
|
|
};
|
|
|
|
/**
|
|
Flake for configuring Niri.
|
|
Used because home-manager does not support Niri yet.
|
|
*/
|
|
niri = {
|
|
url = "github:sodiboo/niri-flake";
|
|
};
|
|
}
|