Remove reference to NUR

This commit is contained in:
Kiana Sheibani 2023-01-07 22:44:17 -05:00
parent 6745b3663f
commit 6696355b19
4 changed files with 46 additions and 28 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, nur, username, fullname, ... }:
{ config, pkgs, lib, username, fullname, ... }:
let
inherit (config) platform;
isMobile = platform == "mobile";
@ -18,7 +18,6 @@ in
restrict-eval = false
'';
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [ nur.overlay ];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
@ -88,11 +87,3 @@ in
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.11"; # Did you read the comment?
}
// lib.mkIf (platform == "mobile") {
hardware.bluetooth.enable = true;
hardware.pulseaudio.package = pkgs.pulseAudioFull;
zramSwap.enable = true;
services.xserver.desktopManager.phosh.user = username;
}