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
|
# https://nixos.wiki/wiki/GNOME
|
||||||
# Remove unwanted packages
|
# Remove unwanted packages
|
||||||
environment.gnome.excludePackages = (with unstable.pkgs; [
|
environment.gnome.excludePackages = (with unstable-pkgs; [
|
||||||
gnome.cheese
|
gnome.cheese
|
||||||
gnome.gnome-music
|
gnome.gnome-music
|
||||||
gnome.epiphany
|
gnome.epiphany
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
gnome.simple-scan
|
gnome.simple-scan
|
||||||
]);
|
]);
|
||||||
|
|
||||||
environment.systemPackages = with unstable.pkgs; [
|
environment.systemPackages = with unstable-pkgs; [
|
||||||
# Gnome Extensions
|
# Gnome Extensions
|
||||||
gnomeExtensions.tiling-assistant
|
gnomeExtensions.tiling-assistant
|
||||||
gnomeExtensions.dash-to-dock
|
gnomeExtensions.dash-to-dock
|
||||||
|
|
|
@ -45,6 +45,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
lib = stable-nixpkgs.lib;
|
lib = stable-nixpkgs.lib;
|
||||||
|
unstable-lib = unstable-nixpkgs.lib;
|
||||||
in {
|
in {
|
||||||
# NixOS Configuration files:
|
# NixOS Configuration files:
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
|
Loading…
Reference in a new issue