From 1957081c122fe231eb6120192489dd979d214317 Mon Sep 17 00:00:00 2001 From: mediocregopher Date: Sun, 13 Aug 2023 21:34:14 +0200 Subject: Update branch with all changes which could be brought in from private branches For a while I was keeping a private branch where there were a lot of non-public things included, and that became the de-facto branch while this one lagged. This one is now up-to-date, all private stuff is dealt with via config files which are not committed. --- config/default.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 config/default.nix (limited to 'config') diff --git a/config/default.nix b/config/default.nix new file mode 100644 index 0000000..2e50b3e --- /dev/null +++ b/config/default.nix @@ -0,0 +1,29 @@ +{ + browser = "/usr/bin/firefox"; + + git = { + user = { + email = "me@mediocregopher.com"; + name = "Brian Picciano"; + }; + }; + + awesome = { + startupExtra = ""; + }; + + alacritty = { + fontSize = 11; + xdgOpenRules = [ + #{ + # name = "some-unique-name"; + # pattern = "regex pattern"; + + # # where $1 is the string which matched pattern + # xdgOpen = "https://some-url/$1"; + #} + ]; + }; + + binExtra = []; +} -- cgit v1.2.3