diff options
author | tv <tv@krebsco.de> | 2021-02-15 14:00:47 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-02-15 14:16:27 +0100 |
commit | dbc0e3d5dee0ffdfcbdfbf394590cd340bb5c469 (patch) | |
tree | 3b7b267cb109c6aa6b7d8d036fd962791b7bfb03 /tv | |
parent | 9b16ee4c75f169a4d59fcff1d15fc5640b03bb7f (diff) |
tv config: define primary screens
Diffstat (limited to 'tv')
-rw-r--r-- | tv/1systems/au/config.nix | 3 | ||||
-rw-r--r-- | tv/2configs/hw/AO753.nix | 3 | ||||
-rw-r--r-- | tv/2configs/hw/w110er.nix | 3 | ||||
-rw-r--r-- | tv/2configs/hw/x220.nix | 7 |
4 files changed, 15 insertions, 1 deletions
diff --git a/tv/1systems/au/config.nix b/tv/1systems/au/config.nix index 3891b75..d9ba539 100644 --- a/tv/1systems/au/config.nix +++ b/tv/1systems/au/config.nix @@ -16,4 +16,7 @@ networking.interfaces.wwp0s29u1u4i6.useDHCP = true; system.stateVersion = "20.03"; + + tv.hw.screens.primary.width = 1920; + tv.hw.screens.primary.height = 1080; } diff --git a/tv/2configs/hw/AO753.nix b/tv/2configs/hw/AO753.nix index a91a5e5..469f5c6 100644 --- a/tv/2configs/hw/AO753.nix +++ b/tv/2configs/hw/AO753.nix @@ -44,4 +44,7 @@ with import <stockholm/lib>; ''; krebs.nixpkgs.allowUnfreePredicate = pkg: packageName pkg == "broadcom-sta"; + + tv.hw.screens.primary.width = 1366; + tv.hw.screens.primary.height = 768; } diff --git a/tv/2configs/hw/w110er.nix b/tv/2configs/hw/w110er.nix index 7d837ea..693cef5 100644 --- a/tv/2configs/hw/w110er.nix +++ b/tv/2configs/hw/w110er.nix @@ -59,4 +59,7 @@ with import <stockholm/lib>; services.xserver = { videoDriver = "intel"; }; + + tv.hw.screens.primary.width = 1366; + tv.hw.screens.primary.height = 768; } diff --git a/tv/2configs/hw/x220.nix b/tv/2configs/hw/x220.nix index aadfc66..ecbb84a 100644 --- a/tv/2configs/hw/x220.nix +++ b/tv/2configs/hw/x220.nix @@ -1,4 +1,6 @@ -{ config, pkgs, ... }: +{ config, pkgs, ... }: let + lib = import <stockholm/lib>; +in { imports = [ ../smartd.nix @@ -74,4 +76,7 @@ services.xserver = { videoDriver = "intel"; }; + + tv.hw.screens.primary.width = lib.mkDefault 1366; + tv.hw.screens.primary.height = lib.mkDefault 768; } |