Embed base nix configuration to binary

This commit is contained in:
Mikhail Klementev 2019-12-29 17:41:44 +00:00
parent 1251a21aba
commit 24927bc787
No known key found for this signature in database
GPG key ID: BE44DA8C062D87DC
3 changed files with 20 additions and 3 deletions

8
local.nix.template.go Normal file
View file

@ -0,0 +1,8 @@
package main
var local_nix_template = []byte(`
{
services.xserver.layout = "us,ru";
services.xserver.xkbOptions = "ctrl:nocaps,grp:rctrl_toggle";
}
`)