- Created common.nix for various configs - Created theme.nix for theme related configs - Moved some code to more logical files - Moved some standalone files into nix multiline strings, in order to inject data
21 lines
369 B
Nix
21 lines
369 B
Nix
# Home configurations for Hyprland. For system configs, see ./modules/hyprland
|
|
{
|
|
imports = [
|
|
./binds.nix
|
|
./hyprcursor
|
|
./waybar
|
|
./hypridle
|
|
./hyprlock
|
|
./hyprshot.nix
|
|
./settings.nix
|
|
./swaync
|
|
];
|
|
|
|
programs = {
|
|
btop.enable = true;
|
|
kitty.settings.window_padding_width = 10;
|
|
};
|
|
|
|
wayland.windowManager.hyprland.enable = true;
|
|
}
|