me like nix
0

Configure Feed

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

1{ 2 description = "My NixOS Flake Configuration"; 3 4 inputs = { 5 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; 6 flake-parts.url = "github:hercules-ci/flake-parts"; 7 import-tree.url = "github:vic/import-tree"; 8 9 home-manager = { 10 url = "github:nix-community/home-manager/master"; 11 inputs.nixpkgs.follows = "nixpkgs"; 12 }; 13 catppuccin.url = "github:catppuccin/nix"; 14 niri.url = "github:sodiboo/niri-flake"; 15 nixarr.url = "github:rasmus-kirk/nixarr"; 16 zen-browser = { 17 url = "github:0xc000022070/zen-browser-flake"; 18 inputs.nixpkgs.follows = "nixpkgs"; 19 }; 20 copyparty.url = "github:9001/copyparty"; 21 nixos-hardware.url = "github:NixOS/nixos-hardware/master"; 22 agenix = { 23 url = "github:ryantm/agenix"; 24 inputs.nixpkgs.follows = "nixpkgs"; 25 }; 26 kaleidux = { 27 url = "github:Mjoyufull/Kaleidux/feat/zerocopy"; 28 inputs.nixpkgs.follows = "nixpkgs"; 29 }; 30 fsel = { 31 url = "github:Mjoyufull/fsel"; 32 inputs.nixpkgs.follows = "nixpkgs"; 33 }; 34 trmnl-rs = { 35 url = "github:seanaye/trmnl-rs"; 36 inputs.nixpkgs.follows = "nixpkgs"; 37 }; 38 berkeley-mono = { 39 url = "path:./berkeley-mono-stub"; 40 inputs.nixpkgs.follows = "nixpkgs"; 41 }; 42 mako-tui = { 43 url = "git+https://codeberg.org/seanaye/mako-tui"; 44 inputs.nixpkgs.follows = "nixpkgs"; 45 }; 46 opencodex = { 47 url = "git+https://codeberg.org/seanaye/opencodex"; 48 inputs.nixpkgs.follows = "nixpkgs"; 49 }; 50 nixos-raspberrypi.url = "github:nvmd/nixos-raspberrypi/main"; 51 }; 52 53 outputs = 54 inputs: 55 inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules); 56}