diff --git a/home/common.nix b/home/common.nix index 677a582..fe76758 100644 --- a/home/common.nix +++ b/home/common.nix @@ -53,6 +53,10 @@ }; }; }; + + mpv = { + enable = true; + }; }; diff --git a/system/common.nix b/system/common.nix index a96f1d2..f7c1613 100644 --- a/system/common.nix +++ b/system/common.nix @@ -1,10 +1,4 @@ -{ - inputs, - config, - pkgs, - lib, - ... -}: +{ inputs, config, pkgs, lib, ... }: let flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs; in { @@ -59,10 +53,22 @@ in security.sudo.wheelNeedsPassword = false; + # Programs + programs = { + git = { + enable = true; + config = { + init.defaultBranch = "master"; + url."https://github.com/".insteadOf = [ "gh:" "github:" ]; + url."https://git.psf.lt/".insteadOf = [ "psf:" "gitea:" ]; + }; + }; + }; + + # Packages environment.systemPackages = with pkgs; [ alsa-utils - mpv ];