moved awesome and hyprland

This commit is contained in:
vali 2024-05-21 00:04:49 +02:00
commit 06a1b5d1fb
8 changed files with 111 additions and 126 deletions

View file

@ -1,17 +1,13 @@
{
pkgs,
lib,
theme,
...
}: let
{ pkgs, lib, theme, ... }:
let
mkService = lib.recursiveUpdate {
Unit.PartOf = ["graphical-session.target"];
Unit.After = ["graphical-session.target"];
Install.WantedBy = ["graphical-session.target"];
Unit.PartOf = [ "graphical-session.target" ];
Unit.After = [ "graphical-session.target" ];
Install.WantedBy = [ "graphical-session.target" ];
};
in {
imports = [./config.nix];
home.packages = with pkgs; [pamixer];
imports = [ ./config.nix ];
home.packages = with pkgs; [ pamixer ];
services = {
wlsunset = {
# TODO: fix opaque red screen issue
@ -32,7 +28,7 @@ imports = [./config.nix];
tray = {
Unit = {
Description = "Home Manager System Tray";
Requires = ["graphical-session-pre.target"];
Requires = [ "graphical-session-pre.target" ];
};
};
};