test
This commit is contained in:
parent
7754e994b0
commit
6cfde13870
2 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
};
|
||||
|
||||
lib = stable-nixpkgs.lib;
|
||||
unstable-lib = unstable-nixpkgs.lib;
|
||||
in {
|
||||
# NixOS Configuration files:
|
||||
nixosConfigurations = {
|
||||
|
|
Loading…
Reference in a new issue