Updated flake and added some server imports

This commit is contained in:
baduhai 2022-12-03 09:48:11 -03:00
parent 9b75753ae2
commit d9538c3bcd
4 changed files with 50 additions and 23 deletions

View file

@ -0,0 +1,13 @@
{ inputs, config, pkgs, lib, ... }:
{
environment.etc."channels/nixpkgs".source = inputs.nixpkgs-stable.outPath;
nix = {
registry.nixpkgs.flake = inputs.nixpkgs-stable;
nixPath = [
"nixpkgs=/etc/channels/nixpkgs"
"/nix/var/nix/profiles/per-user/root/channels"
];
};
}