Trying to use unstable

This commit is contained in:
fleaz 2022-01-26 20:46:10 +01:00
parent 9ed7d822f0
commit 2ddaeb8b03
2 changed files with 9 additions and 2 deletions

View file

@ -2,7 +2,9 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{ sources ? import ../../nix
, pkgs ? sources.pkgs {}
, ... } :
{
imports = [
@ -20,6 +22,11 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# for nvidia drivers
#nixpkgs.config.allowUnfree = true;
#services.xserver.videoDrivers = [ "nvidia" ];
# Set your time zone.
time.timeZone = "Europe/Berlin";