Personal-use NixOS configuration
0
fork

Configure Feed

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

Configure formatter better

encode42 2804eddf c5af1c4d

+10 -4
+7 -2
homes/encode42/desktop/environments/gnome.nix
··· 1 - { pkgs, lib, isLaptop, ... }: 1 + { 2 + pkgs, 3 + lib, 4 + isLaptop, 5 + ... 6 + }: 2 7 3 8 { 4 9 dconf = { ··· 92 97 play-audio-on-copy = false; 93 98 send-notification-on-copy = false; 94 99 95 - exclusion-list = ["Goldwarden"]; 100 + exclusion-list = [ "Goldwarden" ]; 96 101 97 102 session-only-mode = true; 98 103 };
-1
homes/encode42/desktop/jetbrains/datagrip.nix
··· 1 -
+3 -1
outputs.nix
··· 1 1 { ... }@inputs: 2 2 3 3 let 4 + forAllSystems = inputs.nixpkgs.lib.genAttrs inputs.nixpkgs.lib.systems.flakeExposed; 5 + 4 6 mkSystem = import ./lib/mkSystem.nix { 5 7 inherit inputs; 6 8 ··· 8 10 }; 9 11 in 10 12 { 11 - formatter.x86_64-linux = inputs.nixpkgs.legacyPackages.x86_64-linux.nixfmt-rfc-style; 13 + formatter = forAllSystems (system: inputs.nixpkgs.legacyPackages.${system}.nixfmt-tree); 12 14 13 15 nixosConfigurations = { 14 16 encryption = mkSystem {