diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-04-11 10:25:05 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-04-11 10:25:05 +0200 |
commit | 167733884d9e80b56ce168d45c08404bc4aabe5b (patch) | |
tree | 26eed373c1064056c19822ee48a5dd4d24d771bc /modules | |
parent | 22acd4632390bf1231bc7e234fbb6361bbb61368 (diff) | |
download | dots-167733884d9e80b56ce168d45c08404bc4aabe5b.tar.gz dots-167733884d9e80b56ce168d45c08404bc4aabe5b.zip |
Remove obsolete settings
Diffstat (limited to 'modules')
-rw-r--r-- | modules/dockd.nix | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/modules/dockd.nix b/modules/dockd.nix index 0993e81..e2b5870 100644 --- a/modules/dockd.nix +++ b/modules/dockd.nix @@ -18,26 +18,26 @@ in }; config = lib.mkIf (cfg.enable) { + environment.systemPackages = [ pkgs.nur.repos.pn.dockd ]; environment.etc = { "dockd/docked.conf".text = '' [Screen] height=1080 -width=3840 -mm_height=311 -mm_width=1041 +width=1920 +mm_height=282 +mm_width=502 [CRTC] crtc=63 x=0 y=0 rotation=1 -mode=1920x1080 -outputs_len=1 -outputs_0=HDMI3 +mode=None +outputs_len=0 [CRTC] crtc=64 -x=1920 +x=0 y=0 rotation=1 mode=1920x1080 @@ -51,6 +51,7 @@ y=0 rotation=1 mode=None outputs_len=0 + ''; "dockd/undocked.conf".text = '' [Screen] |