Try stable gnome
This commit is contained in:
parent
06204f8305
commit
bb0e7ea795
3 changed files with 69 additions and 11 deletions
|
@ -31,8 +31,3 @@ Repo for nix configuration files
|
||||||
* `nix-shell -p sops --run "sops secrets/secret_file.yml`
|
* `nix-shell -p sops --run "sops secrets/secret_file.yml`
|
||||||
* New shell alias: `sops secrets/secret_file.yml`
|
* New shell alias: `sops secrets/secret_file.yml`
|
||||||
2. Ensure your GPG keys are set up.
|
2. Ensure your GPG keys are set up.
|
||||||
|
|
||||||
# Names
|
|
||||||
* Constellation
|
|
||||||
* Aquilla
|
|
||||||
*
|
|
63
desktops/gnome-unstable.nix
Normal file
63
desktops/gnome-unstable.nix
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
{ config, unstable, ... }: {
|
||||||
|
# Use "unstable" instead of "pkgs" to get the latest packages, defined in "flake.nix"
|
||||||
|
services.xserver = with unstable.pkgs; {
|
||||||
|
# https://nixos.org/manual/nixos/stable/index.html#chap-gnome
|
||||||
|
# Enable the GNOME Desktop Environment.
|
||||||
|
displayManager.gdm.enable = true;
|
||||||
|
desktopManager.gnome.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Set Gnome settings:
|
||||||
|
services.gnome = {
|
||||||
|
games.enable = false;
|
||||||
|
core-utilities.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# https://nixos.wiki/wiki/GNOME
|
||||||
|
# Remove unwanted packages
|
||||||
|
environment.gnome.excludePackages = (with unstable.pkgs; [
|
||||||
|
gnome.cheese
|
||||||
|
gnome.gnome-music
|
||||||
|
gnome.epiphany
|
||||||
|
gnome.geary
|
||||||
|
gnome.totem
|
||||||
|
gnome.gnome-characters
|
||||||
|
gnome-tour
|
||||||
|
gnome-photos
|
||||||
|
gnome.yelp
|
||||||
|
gnome.gnome-font-viewer
|
||||||
|
gnome-connections
|
||||||
|
gnome.gnome-contacts
|
||||||
|
gnome.gnome-logs
|
||||||
|
gnome.gnome-maps
|
||||||
|
gnome.simple-scan
|
||||||
|
]);
|
||||||
|
|
||||||
|
environment.systemPackages = with unstable.pkgs; [
|
||||||
|
# Gnome Extensions
|
||||||
|
gnomeExtensions.tiling-assistant
|
||||||
|
gnomeExtensions.dash-to-dock
|
||||||
|
gnomeExtensions.blur-my-shell
|
||||||
|
gnomeExtensions.vitals
|
||||||
|
gnomeExtensions.user-themes
|
||||||
|
gnomeExtensions.caffeine
|
||||||
|
gnomeExtensions.hibernate-status-button
|
||||||
|
gnomeExtensions.night-theme-switcher
|
||||||
|
|
||||||
|
# Gnome relevant packages
|
||||||
|
gnome3.gnome-tweaks
|
||||||
|
papirus-icon-theme
|
||||||
|
];
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
# Gnome Themes
|
||||||
|
./gnome/themes/gruvbox.nix
|
||||||
|
./gnome/themes/tokyo-night.nix
|
||||||
|
./gnome/themes/nordic.nix
|
||||||
|
./gnome/themes/vimix.nix
|
||||||
|
./gnome/themes/fluent.nix
|
||||||
|
# You may need to edit which theme you're using in dconf.nix if you remove themes
|
||||||
|
];
|
||||||
|
# Idea... Move these to a separate file and tie it into dconf
|
||||||
|
# sections that load the theme automatically when I want it.
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{ config, unstable, ... }: {
|
{ config, pkgs, ... }: {
|
||||||
# Use "unstable" instead of "pkgs" to get the latest packages, defined in "flake.nix"
|
# Use "pkgs" instead of "pkgs" to get the latest packages, defined in "flake.nix"
|
||||||
services.xserver = with unstable.pkgs; {
|
services.xserver = with pkgs; {
|
||||||
# https://nixos.org/manual/nixos/stable/index.html#chap-gnome
|
# https://nixos.org/manual/nixos/stable/index.html#chap-gnome
|
||||||
# Enable the GNOME Desktop Environment.
|
# Enable the GNOME Desktop Environment.
|
||||||
displayManager.gdm.enable = true;
|
displayManager.gdm.enable = true;
|
||||||
|
@ -15,7 +15,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 pkgs; [
|
||||||
gnome.cheese
|
gnome.cheese
|
||||||
gnome.gnome-music
|
gnome.gnome-music
|
||||||
gnome.epiphany
|
gnome.epiphany
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
gnome.simple-scan
|
gnome.simple-scan
|
||||||
]);
|
]);
|
||||||
|
|
||||||
environment.systemPackages = with unstable.pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# Gnome Extensions
|
# Gnome Extensions
|
||||||
gnomeExtensions.tiling-assistant
|
gnomeExtensions.tiling-assistant
|
||||||
gnomeExtensions.dash-to-dock
|
gnomeExtensions.dash-to-dock
|
||||||
|
|
Loading…
Reference in a new issue