add nixpkgs.nix

This commit is contained in:
lassulus 2015-05-07 10:54:29 +02:00 committed by tv
parent b671586698
commit c9c54a6a09
2 changed files with 22 additions and 0 deletions

16
modules/lass/nixpkgs.nix Normal file
View File

@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
with lib;
{
options = {
nixpkgs.url = mkOption {
type = types.string;
description = "url of the remote repo";
};
nixpkgs.rev= mkOption {
type = types.string;
description = "revision of the remote repo";
};
};
}

View File

@ -20,7 +20,13 @@
../lass/steam.nix
../lass/wine.nix
../lass/texlive.nix
../lass/nixpkgs.nix
];
nixpkgs = {
url = "https://github.com/Lassulus/nixpkgs";
rev = "b421fc0686232fb2e1ff723d6ae2295345db007b";
};
networking.hostName = "mors";
networking.wireless.enable = true;