29 lines
659 B
Nix
29 lines
659 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.illogical-impulse.homeManagerModules.default
|
|
../../packages/fonts/home.nix
|
|
];
|
|
programs.illogical-impulse.enable = true;
|
|
programs.illogical-impulse.settings = {
|
|
hyprland.useNixForConf = false;
|
|
simpleStarship.enable = true;
|
|
};
|
|
|
|
# wayland.windowManager.hyprland = {
|
|
# settings = {
|
|
# monitor = lib.mkForce [
|
|
# "DP-1, highres@180,0x1080,1,bitdepth,10,cm,hdr,sdrbrightness,1.4,sdrsaturation,0.98"
|
|
# "DP-2, highres@highrr,760x0,1"
|
|
# ];
|
|
# };
|
|
# };
|
|
# programs.illogical-impulse.settings.simpleStarship.enable = true;
|
|
home.packages = [
|
|
];
|
|
}
|