my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

treewide: format

isabel 39241697 efef2526

+11 -13
+6 -6
home/isabel/cli/git.nix
··· 14 14 config = mkIf config.programs.git.enable (mkMerge [ 15 15 (mkIf config.garden.profiles.workstation.enable { 16 16 garden.packages = { 17 - inherit (pkgs) 18 - # gist # manage github gists 19 - # act # local github actions - littrally does not work 20 - # gitflow # Extend git with the Gitflow branching model 21 - # cocogitto # git helpers 22 - ; 17 + # inherit (pkgs) 18 + # gist # manage github gists 19 + # act # local github actions - littrally does not work 20 + # gitflow # Extend git with the Gitflow branching model 21 + # cocogitto # git helpers 22 + # ; 23 23 24 24 git-crypt = pkgs.git-crypt.override { git = config.programs.git.package; }; 25 25 };
+1 -1
home/isabel/tui/neovim.nix
··· 12 12 13 13 packageOverrides = { 14 14 nil = (pkgs.nil.override { nix = config.nix.package; }).overrideAttrs ( 15 - finalAttrs: oa: { 15 + finalAttrs: _: { 16 16 src = pkgs.fetchFromGitHub { 17 17 owner = "oxalica"; 18 18 repo = "nil";
-1
modules/flake/packages/default.nix
··· 9 9 perSystem = 10 10 { 11 11 pkgs, 12 - self', 13 12 inputs', 14 13 ... 15 14 }:
+1 -1
modules/flake/programs/formatter.nix
··· 1 1 { lib, ... }: 2 2 { 3 3 perSystem = 4 - { pkgs, config, ... }: 4 + { pkgs, ... }: 5 5 { 6 6 formatter = pkgs.treefmt.withConfig { 7 7 runtimeInputs = with pkgs; [
-1
modules/flake/programs/shell.nix
··· 3 3 { 4 4 pkgs, 5 5 config, 6 - inputs', 7 6 ... 8 7 }: 9 8 {
+1 -1
modules/iso/nix.nix
··· 1 - { inputs', config, ... }: 1 + { inputs', ... }: 2 2 { 3 3 nix = { 4 4 # setting nix to be our preferred fork
+1 -1
modules/nixos/services/nginx.nix
··· 23 23 services.nginx.virtualHosts = mkOption { 24 24 type = types.attrsOf ( 25 25 types.submodule ( 26 - { config, ... }: 26 + _: 27 27 { 28 28 freeformType = types.attrsOf types.anything; 29 29
+1 -1
modules/nixos/services/pds/default.nix
··· 43 43 pdsadmin.enable = true; 44 44 45 45 package = pkgs.bluesky-pds.overrideAttrs ( 46 - finalAttrs: oldAttrs: { 46 + finalAttrs: _: { 47 47 version = "0.4.176"; 48 48 src = pkgs.fetchFromGitea { 49 49 domain = "git.isabelroses.com";