this repo has no description
at main 76 lines 1.5 kB view raw
1{ 2 description = "diogo's dotfiles"; 3 4 inputs = { 5 nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz"; 6 7 darwin = { 8 type = "github"; 9 owner = "nix-darwin"; 10 repo = "nix-darwin"; 11 inputs.nixpkgs.follows = "nixpkgs"; 12 }; 13 14 home-manager = { 15 type = "github"; 16 owner = "nix-community"; 17 repo = "home-manager"; 18 inputs.nixpkgs.follows = "nixpkgs"; 19 }; 20 21 catppuccin = { 22 type = "github"; 23 owner = "catppuccin"; 24 repo = "nix"; 25 inputs.nixpkgs.follows = "nixpkgs"; 26 }; 27 28 flake-parts = { 29 type = "github"; 30 owner = "hercules-ci"; 31 repo = "flake-parts"; 32 inputs.nixpkgs-lib.follows = "nixpkgs"; 33 }; 34 35 easy-hosts = { 36 type = "github"; 37 owner = "tgirlcloud"; 38 repo = "easy-hosts"; 39 }; 40 41 systems = { 42 type = "github"; 43 owner = "nix-systems"; 44 repo = "default"; 45 }; 46 47 sops = { 48 type = "github"; 49 owner = "Mic92"; 50 repo = "sops-nix"; 51 inputs.nixpkgs.follows = "nixpkgs"; 52 }; 53 54 website = { 55 type = "github"; 56 owner = "diogowho"; 57 repo = "website"; 58 inputs.nixpkgs.follows = "nixpkgs"; 59 }; 60 61 ipw-rb = { 62 type = "github"; 63 owner = "daviidxd"; 64 repo = "ipw"; 65 inputs.nixpkgs.follows = "nixpkgs"; 66 }; 67 }; 68 69 outputs = 70 inputs: 71 inputs.flake-parts.lib.mkFlake { inherit inputs; } { 72 imports = [ 73 ./flake 74 ]; 75 }; 76}