Compare commits
4 Commits
243777b690
...
feb001699d
Author | SHA1 | Date |
---|---|---|
Oystein Kristoffer Tveit | feb001699d | |
Oystein Kristoffer Tveit | 6d4910324a | |
Oystein Kristoffer Tveit | 0b0a113090 | |
Oystein Kristoffer Tveit | 265cb309fd |
|
@ -23,7 +23,6 @@ in {
|
|||
./programs/tmux.nix
|
||||
./programs/zsh
|
||||
|
||||
./services/git-maintenance.nix
|
||||
./services/nix-channel-update.nix
|
||||
./services/pueue.nix
|
||||
|
||||
|
|
|
@ -14,6 +14,10 @@ let
|
|||
];
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./maintenance-timers.nix
|
||||
];
|
||||
|
||||
# TODO: convert to template once nix-sops supports it in hm module
|
||||
sops.secrets."git/nordicsemi-config" = { };
|
||||
|
||||
|
@ -50,6 +54,7 @@ in
|
|||
authors = "shortlog --summary --numbered --email";
|
||||
si = "switch-interactive";
|
||||
rebase-author = "rebase -i -x \"git commit --amend --reset-author -CHEAD\"";
|
||||
git = "!git";
|
||||
};
|
||||
|
||||
extraConfig = {
|
||||
|
@ -84,6 +89,10 @@ in
|
|||
|
||||
maintenance.strategy = "incremental";
|
||||
|
||||
scalar = {
|
||||
repo = [ "${config.home.homeDirectory}/nixpkgs" ];
|
||||
};
|
||||
|
||||
transfer.fsckObjects = true;
|
||||
|
||||
receive.fsckObjects = true;
|
||||
|
|
|
@ -16,6 +16,10 @@ in {
|
|||
maxItems = 50;
|
||||
browser = ''"${defaultBrowser}"'';
|
||||
extraConfig = lib.strings.concatStringsSep "\n" [
|
||||
''
|
||||
auto-reload no
|
||||
''
|
||||
|
||||
''
|
||||
macro m set browser "${videoViewer}"; open-in-browser ; set browser "${defaultBrowser}"
|
||||
macro l set browser "${defaultBrowser}"; open-in-browser ; set browser "${defaultBrowser}"
|
||||
|
|
|
@ -37,5 +37,6 @@ in {
|
|||
(mkSource [ "tech" "linux" "nixos" ] "https://myme.no/feed.xml")
|
||||
(mkSource [ "tech" "linux" "nixos" "compilers" ] "https://flyx.org/feed.xml")
|
||||
(mkSource [ "tech" "linux" ] "https://blog.jfx.ac/feed.xml")
|
||||
(mkSource [ "tech" "linux" "nixos" ] "https://dandellion.xyz/atom.xml")
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue