From 6da6530ba8f8c047c307e9f5d8596fd74d5840ee Mon Sep 17 00:00:00 2001 From: Lilith Date: Tue, 6 Jan 2026 18:47:49 +0100 Subject: [PATCH] mount --- home/lilith/graphic.nix | 19 +++++++++++++++++++ system/core/persistence.nix | 1 + system/optional/desktop.nix | 9 +++------ 3 files changed, 23 insertions(+), 6 deletions(-) create mode 100644 home/lilith/graphic.nix diff --git a/home/lilith/graphic.nix b/home/lilith/graphic.nix new file mode 100644 index 00000000..cbed23df --- /dev/null +++ b/home/lilith/graphic.nix @@ -0,0 +1,19 @@ +{ systemConfig, lib, ... }: +{ + imports = [ + ./stylix.nix + ./hyprland + ./rofi.nix + ./dunst.nix + ./hyprpanel.nix + + ./firefox + ./alacritty.nix + ./clipman.nix + ./input.nix + + ./playerctld.nix + ./thunderbird.nix + ./messaging.nix + ]; +} diff --git a/system/core/persistence.nix b/system/core/persistence.nix index 31e70e58..01597ba6 100644 --- a/system/core/persistence.nix +++ b/system/core/persistence.nix @@ -47,6 +47,7 @@ ++ lib.optionals config.gaming.enable [ ".config/unity3d/Team Cherry" ".config/EgoSoft" + ".local/share/Paradox Interactive" ]; files = [ ]; }; diff --git a/system/optional/desktop.nix b/system/optional/desktop.nix index 846ccace..ed179051 100644 --- a/system/optional/desktop.nix +++ b/system/optional/desktop.nix @@ -21,15 +21,12 @@ services.greetd = { enable = true; - settings = { + settings = rec { default_session = { user = "lilith"; - command = "Hyprland"; - }; - initial_session = { - user = "lilith"; - command = "Hyprland"; + command = "start-hyprland"; }; + initial_session = default_session; }; }; };