Compare commits

..

No commits in common. "39baef4f049340ad7babdcaddd4914323da16578" and "50d92638351053af1dc694565a5afac550371192" have entirely different histories.

3 changed files with 6 additions and 4 deletions

View file

@ -20,7 +20,6 @@
dejavu_fonts dejavu_fonts
noto-fonts noto-fonts
noto-fonts-cjk-sans noto-fonts-cjk-sans
nerd-fonts.jetbrains-mono
]) ++ (with pkgs; [ ]) ++ (with pkgs; [
material-symbols material-symbols
font-awesome font-awesome

View file

@ -2,7 +2,7 @@
hyprlandPackage = config.home-manager.users.${config.main-user}.wayland.windowManager.hyprland.package; hyprlandPackage = config.home-manager.users.${config.main-user}.wayland.windowManager.hyprland.package;
hyprlandConfig = pkgs.writeText "greetd-hyprland-config" '' hyprlandConfig = pkgs.writeText "greetd-hyprland-config" ''
# for some reason pkill is way faster than dispatching exit, to the point greetd thinks the greeter died. # for some reason pkill is way faster than dispatching exit, to the point greetd thinks the greeter died.
exec-once = quickshell -p ~/.config/quickshell/shell/greeter.qml >& qslog.txt && pkill Hyprland exec-once = quickshell -c greeter >& qslog.txt && pkill Hyprland
input { input {
kb_layout = us kb_layout = us
@ -49,7 +49,7 @@ in {
home.stateVersion = config.system.stateVersion; home.stateVersion = config.system.stateVersion;
imports = [ imports = [
../../../theme/home.nix # also fixes cursor ../../../theme/home.nix # also fixes cursor
../quickshell # set up quickshell conf and such ../quickshell # set up quickshell manifest and such
]; ];
}; };
} }

View file

@ -20,5 +20,8 @@ in {
grim imagemagick # screenshot grim imagemagick # screenshot
]; ];
xdg.configFile."quickshell/shell".source = "${maybeLink ./.}/shell"; xdg.configFile."quickshell/manifest.conf".text = lib.generators.toKeyValue {} {
shell = "${maybeLink ./.}/shell";
greeter = "${maybeLink ./.}/shell/greeter.qml";
};
} }