20 lines
410 B
Nix
20 lines
410 B
Nix
{ inputs, ... }: {
|
|
flake-file.inputs = {
|
|
aghpb = {
|
|
url = "github:cat-milk/Anime-Girls-Holding-Programming-Books";
|
|
flake = false;
|
|
};
|
|
};
|
|
|
|
flake.modules.homeManager.tux-hyprland = {
|
|
imports = with inputs.self.modules.homeManager; [
|
|
ashell
|
|
];
|
|
wayland.windowManager.hyprland.settings = {
|
|
monitor = [
|
|
"eDP-1,preferred,0x0,1.066666667"
|
|
];
|
|
};
|
|
};
|
|
}
|