From 6cfde138706dd6b68901872ef60c1ddcd014b18e Mon Sep 17 00:00:00 2001 From: iFargle Date: Sun, 2 Jul 2023 19:18:38 +0900 Subject: [PATCH] test --- desktops/gnome.nix | 6 +++--- flake.nix | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/desktops/gnome.nix b/desktops/gnome.nix index 14420edb..c0691225 100644 --- a/desktops/gnome.nix +++ b/desktops/gnome.nix @@ -1,4 +1,4 @@ -{ config, pkgs, unstable, ... }: { +{ config, pkgs, ... }: { @@ -16,7 +16,7 @@ # https://nixos.wiki/wiki/GNOME # Remove unwanted packages - environment.gnome.excludePackages = (with unstable.pkgs; [ + environment.gnome.excludePackages = (with unstable-pkgs; [ gnome.cheese gnome.gnome-music gnome.epiphany @@ -34,7 +34,7 @@ gnome.simple-scan ]); - environment.systemPackages = with unstable.pkgs; [ + environment.systemPackages = with unstable-pkgs; [ # Gnome Extensions gnomeExtensions.tiling-assistant gnomeExtensions.dash-to-dock diff --git a/flake.nix b/flake.nix index ee9c26e5..2a8c44e5 100644 --- a/flake.nix +++ b/flake.nix @@ -45,6 +45,7 @@ }; lib = stable-nixpkgs.lib; + unstable-lib = unstable-nixpkgs.lib; in { # NixOS Configuration files: nixosConfigurations = {