remove nixpkgs-wayland impurity

auto-flake-update
Yorick van Pelt 2021-01-03 17:38:16 +01:00
parent c3f92644f6
commit 3bb79a0945
Signed by: yorick
GPG Key ID: A36E70F9DC014A15
2 changed files with 15 additions and 0 deletions

View File

@ -34,5 +34,17 @@
"type": "tarball",
"url": "https://github.com/NixOS/nixpkgs/archive/733e537a8ad76fd355b6f501127f7d0eb8861775.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"nixpkgs-wayland": {
"branch": "master",
"description": "Automated, pre-built packages for Wayland (sway/wlroots) tools for NixOS.",
"homepage": "",
"owner": "colemickens",
"repo": "nixpkgs-wayland",
"rev": "80a15b9aaf56cc559cf0028763776cadad36ece2",
"sha256": "02s1k36iypsa7y1brwarz5y74dcrnn5qqplih3jq4dh0baqliiz0",
"type": "tarball",
"url": "https://github.com/colemickens/nixpkgs-wayland/archive/80a15b9aaf56cc559cf0028763776cadad36ece2.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
}
}

View File

@ -1,5 +1,6 @@
{ config, lib, pkgs, ... }:
let
sources = import ../nix/sources.nix;
nixNetrcFile = pkgs.runCommand "nix-netrc-file"
{ hostname = "cache.lumi.guide";
username = "lumi";
@ -15,6 +16,8 @@ in
imports = [
./graphical.nix
];
nixpkgs.overlays = [ (import sources.nixpkgs-wayland) ];
users.extraUsers.yorick.extraGroups = [ "input" "wireshark" "dialout" ];
services.printing = {
enable = true;