this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(thinkpadz13): add Sway output override

+16 -2
+16 -2
hosts/thinkpadz13/default.nix
··· 11 11 }; 12 12 }; 13 13 14 + networking = { 15 + hostName = "thinkpadz13"; 16 + }; 17 + 14 18 services = { 15 19 tlp = { 16 20 enable = true; ··· 65 69 }; 66 70 }; 67 71 68 - networking = { 69 - hostName = "thinkpadz13"; 72 + home-manager = { 73 + users.khuedoan = { 74 + home = { 75 + file = { 76 + ".config/sway/config.d/hardware".text = '' 77 + output "eDP-1" { 78 + scale 1.2 79 + } 80 + ''; 81 + }; 82 + }; 83 + }; 70 84 }; 71 85 }