1957081c12
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.
30 lines
461 B
Nix
30 lines
461 B
Nix
{
|
|
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 = [];
|
|
}
|