Compare commits

...

3 Commits

Author SHA1 Message Date
93f81a1f7f guh 2026-02-22 15:45:07 +00:00
ba58db5873 d 2026-02-21 17:53:25 +00:00
9fbb2574d4 a 2026-02-21 17:52:02 +00:00
5 changed files with 19 additions and 18 deletions

View File

@@ -2,7 +2,12 @@
{
modules.obs = settings: {
homeManager =
{ pkgs, config, ... }:
{
pkgs,
lib,
config,
...
}:
{
programs = {
obs-studio = {
@@ -19,7 +24,7 @@
};
};
systemd.user.services =
pkgs.lib.mkIf settings.virtual_audio_devices {
lib.mkIf settings.virtual_audio_devices {
pw-discordaudio-virtual-device = {
Install = {
WantedBy = [ "hyprland-session.target" ];

View File

@@ -9,22 +9,12 @@
...
}:
{
home.file.".config/quickshell" = {
recursive = true;
source = config.lib.file.mkOutOfStoreSymlink ./quickshell;
};
systemd.user.services.quickshell = {
Unit = {
Description = "Quickshell daemon";
After = [ "hyprland-session.target" ];
};
Install = {
WantedBy = [ "default.target" ];
};
Service = {
ExecStart = "${pkgs.quickshell}/bin/quickshell";
Restart = "on-failure";
RestartSec = "5s";
programs.quickshell = {
systemd.enable = true;
enable = true;
activeConfig = "main";
configs = {
main = config.lib.file.mkOutOfStoreSymlink "/home/doloro/dotfiles/config/modules/quickshell/quickshell";
};
};
};

View File

@@ -0,0 +1 @@
/run/user/1000/quickshell/vfs/6e389f6b800776b0595d9d90e42ebd04/.qmlls.ini

View File

@@ -0,0 +1 @@
/nix/store/ynim9hhkc1smj1h2plrw3ap978dlm3qj-home-manager-files/.config/quickshell/main

View File

@@ -1,4 +1,8 @@
// @ pragma UseQApplication
//@ pragma Env QS_NO_RELOAD_POPUP=0
//@ pragma Env QT_QUICK_CONTROLS_STYLE=Basic
//@ pragma Env QT_QUICK_FLICKABLE_WHEEL_DECELERATION=10000
import Quickshell
import QtQuick