Your one-stop-cake-shop for everything Freshly Baked has to offer

style: remove dead code

+2 -2
packetmix/ci.nix
··· 7 project = base.extend { 8 modules = [ 9 ( 10 - { config, lib, ... }: 11 { 12 config.inputs = ( 13 builtins.mapAttrs ( 14 - name: value: 15 if value ? settings.configuration.allowUnfree then 16 { 17 settings.configuration = {
··· 7 project = base.extend { 8 modules = [ 9 ( 10 + { config, ... }: 11 { 12 config.inputs = ( 13 builtins.mapAttrs ( 14 + _name: value: 15 if value ? settings.configuration.allowUnfree then 16 { 17 settings.configuration = {
+1 -1
packetmix/homes/catppuccin/catppuccin.nix
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 - { project, lib, ... }: 6 { 7 imports = [ project.inputs.catppuccin.result.homeModules.catppuccin ]; 8 config.catppuccin.enable = true;
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 + { project, ... }: 6 { 7 imports = [ project.inputs.catppuccin.result.homeModules.catppuccin ]; 8 config.catppuccin.enable = true;
-1
packetmix/homes/coded/catppuccin.nix
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 - { project, ... }: 6 { 7 config.catppuccin = { 8 flavor = "macchiato";
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 { 6 config.catppuccin = { 7 flavor = "macchiato";
-1
packetmix/homes/common/gtk.nix
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 - { pkgs, ... }: 6 { 7 gtk.enable = true; 8 }
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 { 6 gtk.enable = true; 7 }
-1
packetmix/homes/common/helix.nix
··· 4 5 { 6 config, 7 - pkgs, 8 project, 9 system, 10 ...
··· 4 5 { 6 config, 7 project, 8 system, 9 ...
-3
packetmix/homes/default.nix
··· 4 # SPDX-License-Identifier: MIT 5 6 { config, ... }: 7 - let 8 - nixpkgs = config.inputs.nixpkgs.result; 9 - in 10 { 11 config.homes."maya:x86_64-linux" = { 12 modules = [
··· 4 # SPDX-License-Identifier: MIT 5 6 { config, ... }: 7 { 8 config.homes."maya:x86_64-linux" = { 9 modules = [
-2
packetmix/homes/development/helix.nix
··· 4 5 { 6 pkgs, 7 - project, 8 - system, 9 ... 10 }: 11 {
··· 4 5 { 6 pkgs, 7 ... 8 }: 9 {
-1
packetmix/homes/development/tmux.nix
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 - { lib, ... }: 6 { 7 programs.tmux.enable = true; 8 programs.fzf.tmux.enableShellIntegration = true; # Needed for using sesh - which relies on fzf+tmux
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 { 6 programs.tmux.enable = true; 7 programs.fzf.tmux.enableShellIntegration = true; # Needed for using sesh - which relies on fzf+tmux
+4 -1
packetmix/homes/espanso/espanso.nix
··· 3 # 4 # SPDX-License-Identifier: MIT 5 6 - { config, lib, ... }: 7 { 8 home.file = { 9 ".cache/espanso/kvs/has_completed_wizard" = {
··· 3 # 4 # SPDX-License-Identifier: MIT 5 6 + { 7 + config, 8 + ... 9 + }: 10 { 11 home.file = { 12 ".cache/espanso/kvs/has_completed_wizard" = {
-2
packetmix/homes/maya/niri.nix
··· 4 # SPDX-License-Identifier: MIT 5 6 { 7 - project, 8 - config, 9 pkgs, 10 lib, 11 ...
··· 4 # SPDX-License-Identifier: MIT 5 6 { 7 pkgs, 8 lib, 9 ...
-3
packetmix/homes/minion/niri.nix
··· 3 # SPDX-License-Identifier: MIT 4 5 { 6 - project, 7 - config, 8 pkgs, 9 - lib, 10 ... 11 }: 12 {
··· 3 # SPDX-License-Identifier: MIT 4 5 { 6 pkgs, 7 ... 8 }: 9 {
-2
packetmix/homes/niri/niri.nix
··· 104 105 binds = 106 let 107 - inherit (config.lib.niri) actions; 108 - 109 mod = "Super"; 110 mod1 = "Alt"; 111
··· 104 105 binds = 106 let 107 mod = "Super"; 108 mod1 = "Alt"; 109
-1
packetmix/modules/nilla-home/home.nix
··· 4 5 { lib, config }: 6 let 7 - inherit (config) inputs; 8 homes-type = import ./homes-type.nix { inherit lib config; }; 9 in 10 {
··· 4 5 { lib, config }: 6 let 7 homes-type = import ./homes-type.nix { inherit lib config; }; 8 in 9 {
+1 -2
packetmix/modules/nilla-home/nixos.nix
··· 30 31 config.modules = 32 let 33 - system = submodule.config.pkgs.system; 34 warn' = builtins.warn or builtins.trace; # builtins.warn doesn't exist on some versions of nix/lix 35 warnIf = 36 condition: message: value: ··· 52 { 53 home, 54 homeName, 55 - username, 56 }@identity: 57 warnIf (home.home-manager != homeManager) 58 "The home \"${homeName}\" isn't using the same home-manager input as the NixOS system \"${name}\". This may work, but is not officially supported by the Nilla Home or Nilla NixOS maintainers. Please fix this before reporting any bugs you may find."
··· 30 31 config.modules = 32 let 33 warn' = builtins.warn or builtins.trace; # builtins.warn doesn't exist on some versions of nix/lix 34 warnIf = 35 condition: message: value: ··· 51 { 52 home, 53 homeName, 54 + ... 55 }@identity: 56 warnIf (home.home-manager != homeManager) 57 "The home \"${homeName}\" isn't using the same home-manager input as the NixOS system \"${name}\". This may work, but is not officially supported by the Nilla Home or Nilla NixOS maintainers. Please fix this before reporting any bugs you may find."
-6
packetmix/nilla.nix
··· 6 pins = import ./npins; 7 8 nilla = import pins.nilla; 9 - 10 - settings = { 11 - nixpkgs.configuration.allowUnfree = true; 12 - "nixos-24.11" = settings.nixpkgs; 13 - nixos-unstable = settings.nixpkgs; 14 - }; 15 in 16 nilla.create ( 17 { config, lib }:
··· 6 pins = import ./npins; 7 8 nilla = import pins.nilla; 9 in 10 nilla.create ( 11 { config, lib }:
+2 -4
packetmix/packages/bluesky-pds/default.nix
··· 9 systems = [ "x86_64-linux" ]; 10 package = 11 { 12 - system, 13 stdenv, 14 nodejs, 15 pnpm_9, 16 - lib, 17 srcOnly, 18 python3, 19 ... ··· 83 system, 84 ... 85 }: 86 - config.inputs.nixos-unstable.result.${system}.bluesky-pds.overrideAttrs (prevAttrs: { 87 postBuild = '' 88 rm -r node_modules/.pnpm/@atproto+pds@0.4.169 89 mkdir -p node_modules/.pnpm/@atproto+pds@0.4.169 ··· 91 config.packages.bluesky-atproto-pds.result.${system} 92 }/lib node_modules/.pnpm/@atproto+pds@0.4.169/node_modules 93 ''; 94 - }); 95 }; 96 }
··· 9 systems = [ "x86_64-linux" ]; 10 package = 11 { 12 stdenv, 13 nodejs, 14 pnpm_9, 15 srcOnly, 16 python3, 17 ... ··· 81 system, 82 ... 83 }: 84 + config.inputs.nixos-unstable.result.${system}.bluesky-pds.overrideAttrs { 85 postBuild = '' 86 rm -r node_modules/.pnpm/@atproto+pds@0.4.169 87 mkdir -p node_modules/.pnpm/@atproto+pds@0.4.169 ··· 89 config.packages.bluesky-atproto-pds.result.${system} 90 }/lib node_modules/.pnpm/@atproto+pds@0.4.169/node_modules 91 ''; 92 + }; 93 }; 94 }
+4 -1
packetmix/systems/common/fonts.nix
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 - { pkgs, lib, ... }: 6 { 7 fonts.packages = [ 8 pkgs.cantarell-fonts
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 + { 6 + pkgs, 7 + ... 8 + }: 9 { 10 fonts.packages = [ 11 pkgs.cantarell-fonts
-1
packetmix/systems/common/inputs.nix
··· 4 5 { 6 project, 7 - pkgs, 8 lib, 9 ... 10 }:
··· 4 5 { 6 project, 7 lib, 8 ... 9 }:
+4 -1
packetmix/systems/default.nix
··· 3 # 4 # SPDX-License-Identifier: MIT 5 6 - { config, lib, ... }: 7 let 8 nixpkgs = config.inputs.nixpkgs.result; 9 in
··· 3 # 4 # SPDX-License-Identifier: MIT 5 6 + { 7 + config, 8 + ... 9 + }: 10 let 11 nixpkgs = config.inputs.nixpkgs.result; 12 in
-1
packetmix/systems/emden/hardware-configuration.nix
··· 5 { 6 config, 7 lib, 8 - pkgs, 9 modulesPath, 10 ... 11 }:
··· 5 { 6 config, 7 lib, 8 modulesPath, 9 ... 10 }:
-1
packetmix/systems/emden/steam.nix
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 - { lib, ... }: 6 { 7 programs.steam = { 8 enable = true;
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 { 6 programs.steam = { 7 enable = true;
+1 -1
packetmix/systems/espanso/nixpkgs-328890--espanso-capdacoverride.nix
··· 42 43 config = lib.mkIf cfg.enable { 44 nixpkgs.overlays = [ 45 - (final: prev: { 46 _espanso-wayland-orig = prev.espanso-wayland; 47 espanso-wayland = 48 pkgs.callPackage ./nixpkgs-328890--espanso-capdacoverride/espanso-capdacoverride.nix
··· 42 43 config = lib.mkIf cfg.enable { 44 nixpkgs.overlays = [ 45 + (_final: prev: { 46 _espanso-wayland-orig = prev.espanso-wayland; 47 espanso-wayland = 48 pkgs.callPackage ./nixpkgs-328890--espanso-capdacoverride/espanso-capdacoverride.nix
-1
packetmix/systems/gaming/steam.nix
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 - { lib, ... }: 6 { 7 programs.steam = { 8 enable = true;
··· 2 # 3 # SPDX-License-Identifier: MIT 4 5 { 6 programs.steam = { 7 enable = true;
-1
packetmix/systems/marbled/hardware-configuration.nix
··· 6 { 7 config, 8 lib, 9 - pkgs, 10 modulesPath, 11 ... 12 }:
··· 6 { 7 config, 8 lib, 9 modulesPath, 10 ... 11 }:
-1
packetmix/systems/niri/niri.nix
··· 5 # 6 # This file is based on some work from sodiboo's niri-flake, see https://github.com/sodiboo/niri-flake/blob/main/flake.nix 7 { 8 - project, 9 pkgs, 10 lib, 11 ...
··· 5 # 6 # This file is based on some work from sodiboo's niri-flake, see https://github.com/sodiboo/niri-flake/blob/main/flake.nix 7 { 8 pkgs, 9 lib, 10 ...
-1
packetmix/systems/personal/configuration.nix
··· 8 9 { 10 project, 11 - config, 12 system, 13 pkgs, 14 ...
··· 8 9 { 10 project, 11 system, 12 pkgs, 13 ...
-1
packetmix/systems/redhead/hardware-configuration.nix
··· 5 { 6 config, 7 lib, 8 - pkgs, 9 modulesPath, 10 ... 11 }:
··· 5 { 6 config, 7 lib, 8 modulesPath, 9 ... 10 }:
-4
packetmix/systems/redhead/remoteBuilds.nix
··· 3 # SPDX-License-Identifier: MIT 4 5 { 6 - lib, 7 - ... 8 - }: 9 - { 10 nix = { 11 distributedBuilds = true; 12 buildMachines = [
··· 3 # SPDX-License-Identifier: MIT 4 5 { 6 nix = { 7 distributedBuilds = true; 8 buildMachines = [
+1 -2
packetmix/systems/teal/pds.nix
··· 4 5 { 6 project, 7 - pkgs, 8 system, 9 ... 10 }: ··· 15 ]; 16 17 nixpkgs.overlays = [ 18 - (final: prev: { 19 bluesky-pdsadmin = final.pdsadmin; 20 }) 21 ];
··· 4 5 { 6 project, 7 system, 8 ... 9 }: ··· 14 ]; 15 16 nixpkgs.overlays = [ 17 + (final: _prev: { 18 bluesky-pdsadmin = final.pdsadmin; 19 }) 20 ];
-1
packetmix/systems/teal/stalwart.nix
··· 5 { 6 project, 7 config, 8 - pkgs, 9 lib, 10 ... 11 }:
··· 5 { 6 project, 7 config, 8 lib, 9 ... 10 }:
-2
packetmix/systems/teal/vaultwarden.nix
··· 3 # SPDX-License-Identifier: MIT 4 5 { 6 - pkgs, 7 - lib, 8 config, 9 ... 10 }:
··· 3 # SPDX-License-Identifier: MIT 4 5 { 6 config, 7 ... 8 }: