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 nixConfig = { 5 extra-substituters = [ 6 "https://niri.cachix.org" 7 "https://noctalia.cachix.org" 8 ]; 9 extra-trusted-public-keys = [ 10 "niri.cachix.org-1:Wv0OmO7PsuocRKzfDoJ3mulSl7Z6oezYhGhR+3W2964=" 11 "noctalia.cachix.org-1:pCOR47nnMEo5thcxNDtzWpOxNFQsBRglJzxWPp3dkU4=" 12 ]; 13 }; 14 15 inputs = { 16 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; 17 flake-parts.url = "github:hercules-ci/flake-parts"; 18 import-tree.url = "github:vic/import-tree"; 19 20 home-manager = { 21 url = "github:nix-community/home-manager/master"; 22 inputs.nixpkgs.follows = "nixpkgs"; 23 }; 24 catppuccin.url = "github:catppuccin/nix"; 25 niri.url = "github:sodiboo/niri-flake"; 26 noctalia.url = "github:noctalia-dev/noctalia"; 27 nixarr.url = "github:rasmus-kirk/nixarr"; 28 zen-browser = { 29 url = "github:0xc000022070/zen-browser-flake"; 30 inputs.nixpkgs.follows = "nixpkgs"; 31 }; 32 copyparty.url = "github:9001/copyparty"; 33 nixos-hardware.url = "github:NixOS/nixos-hardware/master"; 34 agenix = { 35 url = "github:ryantm/agenix"; 36 inputs.nixpkgs.follows = "nixpkgs"; 37 }; 38 fsel = { 39 url = "github:Mjoyufull/fsel"; 40 inputs.nixpkgs.follows = "nixpkgs"; 41 }; 42 trmnl-rs = { 43 url = "github:seanaye/trmnl-rs"; 44 inputs.nixpkgs.follows = "nixpkgs"; 45 }; 46 berkeley-mono = { 47 url = "path:./berkeley-mono-stub"; 48 inputs.nixpkgs.follows = "nixpkgs"; 49 }; 50 mako-tui = { 51 url = "git+https://codeberg.org/seanaye/mako-tui"; 52 inputs.nixpkgs.follows = "nixpkgs"; 53 }; 54 opencodex = { 55 url = "git+https://codeberg.org/seanaye/opencodex"; 56 inputs.nixpkgs.follows = "nixpkgs"; 57 }; 58 nixos-raspberrypi.url = "github:nvmd/nixos-raspberrypi/main"; 59 }; 60 61 outputs = 62 inputs: 63 inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules); 64}