mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-02-22 12:55:33 +08:00
config.lib -> lib
This commit is contained in:
parent
ac0ac31e1e
commit
279cac318b
10 changed files with 15 additions and 21 deletions
|
|
@ -105,19 +105,19 @@
|
|||
};
|
||||
workspaces = {
|
||||
"1" = {
|
||||
open-on-output = config.mainMonitorName;
|
||||
open-on-output = config.lib.monitors.mainMonitorName;
|
||||
name = "coding";
|
||||
};
|
||||
"2" = {
|
||||
open-on-output = config.mainMonitorName;
|
||||
open-on-output = config.lib.monitors.mainMonitorName;
|
||||
name = "browsing";
|
||||
};
|
||||
"3" = {
|
||||
open-on-output = builtins.head config.otherMonitorsNames;
|
||||
open-on-output = builtins.head config.lib.monitors.otherMonitorsNames;
|
||||
name = "reading";
|
||||
};
|
||||
"4" = {
|
||||
open-on-output = config.mainMonitorName;
|
||||
open-on-output = config.lib.monitors.mainMonitorName;
|
||||
name = "music";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue