this repo has no description
1
fork

Configure Feed

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

ft: add Doggo and reformat Nix files

+53 -46
+1 -1
hosts/modules/builders.nix
··· 1 - { ... }: { 1 + {...}: { 2 2 nix.linux-builder = { 3 3 enable = false; 4 4 ephemeral = true;
+7 -8
modules/common.nix
··· 12 12 pkgs.cachix 13 13 ]; 14 14 15 - nix.registry = 16 - { 17 - darwin.flake = inputs.darwin; 18 - dotfiles.flake = inputs.self; 19 - flake-parts.flake = inputs.flake-parts; 20 - nixpkgs.flake = inputs.nixpkgs; 21 - }; 15 + nix.registry = { 16 + darwin.flake = inputs.darwin; 17 + dotfiles.flake = inputs.self; 18 + flake-parts.flake = inputs.flake-parts; 19 + nixpkgs.flake = inputs.nixpkgs; 20 + }; 22 21 23 22 nix.nixPath = [ 24 - { nixpkgs = inputs.nixpkgs; } 23 + {nixpkgs = inputs.nixpkgs;} 25 24 ]; 26 25 27 26 # nix.package = pkgs.nixFlakes;
+12 -8
modules/email.nix
··· 1 - {pkgs, config, lib, ...}: { 1 + { 2 + pkgs, 3 + config, 4 + lib, 5 + ... 6 + }: { 2 7 targets.darwin.defaults = { 3 8 # Remember the fallen 4 9 "com.apple.mail" = { ··· 47 52 default = "INBOX"; 48 53 copy-to = "INBOX"; 49 54 folders-sort = "INBOX,Draft"; 50 - signature-file = 51 - toString (pkgs.writeTextFile { 52 - name = "hauleth-signature"; 53 - text = config.accounts.email.accounts.hauleth.signature.text; 54 - }); 55 + signature-file = toString (pkgs.writeTextFile { 56 + name = "hauleth-signature"; 57 + text = config.accounts.email.accounts.hauleth.signature.text; 58 + }); 55 59 }; 56 60 }; 57 61 himalaya.enable = true; ··· 61 65 showSignature = "append"; 62 66 63 67 text = '' 64 - Hauleth 65 - ~@hauleth.dev 68 + Hauleth 69 + ~@hauleth.dev 66 70 ''; 67 71 }; 68 72
+5 -1
modules/fonts.nix
··· 1 - {pkgs, inputs, ...}: let 1 + { 2 + pkgs, 3 + inputs, 4 + ... 5 + }: let 2 6 pkgs-self = inputs.self.packages.${pkgs.stdenv.hostPlatform.system}; 3 7 in { 4 8 fonts = {
+6 -5
modules/tools.nix
··· 11 11 in { 12 12 home.packages = [ 13 13 # bfs 14 + pkgs-self.ubin-client 15 + pkgs.btop 16 + pkgs.charm-freeze 14 17 pkgs.comby 15 - pkgs.senpai 18 + pkgs.doggo 19 + pkgs.glow 16 20 pkgs.jaq 17 21 jaq-as-jq 18 22 pkgs.jo 19 - pkgs.glow 20 - pkgs-self.ubin-client 21 23 pkgs.reuse 22 - pkgs.charm-freeze 24 + pkgs.senpai 23 25 pkgs.timg 24 - pkgs.btop 25 26 pkgs.typos 26 27 ]; 27 28 }
-1
pkgs/hosevka.nix
··· 60 60 inherit variants weights slopes ligations; 61 61 }; 62 62 } 63 -
+22 -22
templates/elixir/flake.nix
··· 14 14 flake-parts, 15 15 ... 16 16 } @ inputs: 17 - flake-parts.lib.mkFlake { inherit inputs; } { 18 - imports = [ 19 - inputs.devenv.flakeModule 20 - ]; 17 + flake-parts.lib.mkFlake {inherit inputs;} { 18 + imports = [ 19 + inputs.devenv.flakeModule 20 + ]; 21 21 22 - systems = [ 23 - "x86_64-linux" 24 - "x86_64-darwin" 25 - "aarch64-linux" 26 - "aarch64-darwin" 27 - ]; 22 + systems = [ 23 + "x86_64-linux" 24 + "x86_64-darwin" 25 + "aarch64-linux" 26 + "aarch64-darwin" 27 + ]; 28 28 29 - perSystem = { 30 - self', 31 - inputs', 32 - pkgs, 33 - ... 34 - }: { 35 - devenv.shells.default = { 36 - language.elixir.enable = true; 29 + perSystem = { 30 + self', 31 + inputs', 32 + pkgs, 33 + ... 34 + }: { 35 + devenv.shells.default = { 36 + language.elixir.enable = true; 37 37 38 - packages = [ 39 - pkgs.lexical 40 - ]; 38 + packages = [ 39 + pkgs.lexical 40 + ]; 41 + }; 41 42 }; 42 43 }; 43 - }; 44 44 }