this repo has no description
fork

Configure Feed

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

at main 33 lines 654 B view raw
1{ inputs, ... }: 2 3{ 4 imports = [ ./stylix.nix ]; 5 6 nix = { 7 settings = { 8 trusted-users = [ 9 "root" 10 "wardxela" 11 ]; 12 experimental-features = [ 13 "nix-command" 14 "flakes" 15 "pipe-operators" 16 ]; 17 substituters = [ 18 "https://vicinae.cachix.org" 19 ]; 20 trusted-public-keys = [ 21 "vicinae.cachix.org-1:1kDrfienkGHPYbkpNj1mWTr7Fm1+zcenzgTizIcI3oc=" 22 ]; 23 }; 24 }; 25 26 nixpkgs.config.allowUnfree = true; 27 28 home-manager.useGlobalPkgs = true; 29 home-manager.useUserPackages = true; 30 home-manager.extraSpecialArgs = { inherit inputs; }; 31 32 time.timeZone = "Europe/Moscow"; 33}