diff options
Diffstat (limited to 'user/modules')
-rw-r--r-- | user/modules/nixos.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/user/modules/nixos.nix b/user/modules/nixos.nix new file mode 100644 index 00000000..0df5817b --- /dev/null +++ b/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; + }; + }) + ]; +} |