This commit is contained in:
iFargle 2023-07-02 19:18:38 +09:00
parent 7754e994b0
commit 6cfde13870
2 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -45,6 +45,7 @@
};
lib = stable-nixpkgs.lib;
unstable-lib = unstable-nixpkgs.lib;
in {
# NixOS Configuration files:
nixosConfigurations = {