mirror of
https://codeberg.org/muon/home.git
synced 2026-03-08 03:25:16 +00:00
Add new options to muon
This commit is contained in:
parent
ccb792282b
commit
cbc44a5eba
1 changed files with 22 additions and 11 deletions
|
|
@ -1,5 +1,11 @@
|
|||
{ pkgs, lib, osConfig,... }:
|
||||
let cfg = osConfig.mods; in {
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
osConfig,
|
||||
...
|
||||
}: let
|
||||
cfg = osConfig.mods;
|
||||
in {
|
||||
# Modules
|
||||
mods.xdg.enable = true;
|
||||
mods.social.enable = true;
|
||||
|
|
@ -11,17 +17,22 @@ let cfg = osConfig.mods; in {
|
|||
mods.desktop.development.enable = true;
|
||||
mods.desktop.productivity.enable = true;
|
||||
mods.desktop.media.enable = true;
|
||||
mods.zen.enable = true;
|
||||
mods.obsidian.enable = true;
|
||||
|
||||
# Hardware preferences
|
||||
|
||||
## Monitors
|
||||
xsession.windowManager.i3.config.workspaceOutputAssign = [{
|
||||
xsession.windowManager.i3.config.workspaceOutputAssign = [
|
||||
{
|
||||
workspace = "1";
|
||||
output = "${cfg.monitors.primary.name}";
|
||||
} {
|
||||
}
|
||||
{
|
||||
workspace = "2";
|
||||
output = "${cfg.monitors.secondary.name}";
|
||||
}];
|
||||
}
|
||||
];
|
||||
services.autorandr.enable = true;
|
||||
programs.autorandr = {
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue