Try stable gnome
This commit is contained in:
parent
06204f8305
commit
bb0e7ea795
3 changed files with 69 additions and 11 deletions
|
@ -30,9 +30,4 @@ Repo for nix configuration files
|
|||
1. To edit a file: cd to `/path/to/nix-files/` and run:
|
||||
* `nix-shell -p sops --run "sops secrets/secret_file.yml`
|
||||
* New shell alias: `sops secrets/secret_file.yml`
|
||||
2. Ensure your GPG keys are set up.
|
||||
|
||||
# Names
|
||||
* Constellation
|
||||
* Aquilla
|
||||
*
|
||||
2. Ensure your GPG keys are set up.
|
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, ... }: {
|
||||
# Use "unstable" instead of "pkgs" to get the latest packages, defined in "flake.nix"
|
||||
services.xserver = with unstable.pkgs; {
|
||||
{ config, pkgs, ... }: {
|
||||
# Use "pkgs" instead of "pkgs" to get the latest packages, defined in "flake.nix"
|
||||
services.xserver = with pkgs; {
|
||||
# https://nixos.org/manual/nixos/stable/index.html#chap-gnome
|
||||
# Enable the GNOME Desktop Environment.
|
||||
displayManager.gdm.enable = true;
|
||||
|
@ -15,7 +15,7 @@
|
|||
|
||||
# https://nixos.wiki/wiki/GNOME
|
||||
# Remove unwanted packages
|
||||
environment.gnome.excludePackages = (with unstable.pkgs; [
|
||||
environment.gnome.excludePackages = (with pkgs; [
|
||||
gnome.cheese
|
||||
gnome.gnome-music
|
||||
gnome.epiphany
|
||||
|
@ -33,7 +33,7 @@
|
|||
gnome.simple-scan
|
||||
]);
|
||||
|
||||
environment.systemPackages = with unstable.pkgs; [
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Gnome Extensions
|
||||
gnomeExtensions.tiling-assistant
|
||||
gnomeExtensions.dash-to-dock
|
||||
|
|
Loading…
Reference in a new issue