add nixpkgs.nix
This commit is contained in:
parent
b671586698
commit
c9c54a6a09
16
modules/lass/nixpkgs.nix
Normal file
16
modules/lass/nixpkgs.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user