This commit is contained in:
iFargle 2023-07-02 19:11:46 +09:00
parent e6a1fc180c
commit 152d7b1e5d
2 changed files with 6 additions and 3 deletions

View file

@ -1,4 +1,7 @@
{ config, pkgs, ... }: {
services.xserver = {
# Enable the GNOME Desktop Environment.
displayManager.gdm.enable = true;
@ -13,7 +16,7 @@
# https://nixos.wiki/wiki/GNOME
# Remove unwanted packages
environment.gnome.excludePackages = (with unstable-nixpkgs; [
environment.gnome.excludePackages = (with unstable.pkgs; [
gnome.cheese
gnome.gnome-music
gnome.epiphany
@ -31,7 +34,7 @@
gnome.simple-scan
]);
environment.systemPackages = with unstable-nixpkgs; [
environment.systemPackages = with unstable.pkgs; [
# Gnome Extensions
gnomeExtensions.tiling-assistant
gnomeExtensions.dash-to-dock

View file

@ -41,7 +41,7 @@
config = { allowUnfree = true; };
};
unstable-pkgs = import unstable-nixpkgs {
unstable = import unstable-nixpkgs {
inherit system;
config = { allowUnfree = true; };
};