all repos — nixfiles @ a6008a0432b90faa49ffaa76267d3af98adac54a

System and user configuration, managed by nix and home-manager

Import nixos-unstable as overlay

Alan Pearce
commit

a6008a0432b90faa49ffaa76267d3af98adac54a

parent

db1113b79e02e9accc4d83dc64a46b348349b492

1 file changed, 14 insertions(+), 0 deletions(-)

changed files
A user/modules/nixos.nix
@@ -0,0 +1,14 @@
+{ config, pkgs, ... }: + +{ + imports = [ + ./nix.nix + ]; + nixpkgs.overlays = [ + (self: super: { + unstable = import <nixos-unstable> { + config = config.nixpkgs.config; + }; + }) + ]; +}