gnome 46
This commit is contained in:
@@ -10,8 +10,6 @@ let
|
||||
hostname = "matt-nixos";
|
||||
gnome = true;
|
||||
plasma = false;
|
||||
|
||||
# gnome46 = import (builtins.fetchTarball https://github.com/nixos/nixpgs/tarball/gnome-46) { config = config.nixpgs.config; };
|
||||
in {
|
||||
imports = [ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
@@ -68,9 +66,6 @@ in {
|
||||
bootspec.enable = true;
|
||||
};
|
||||
|
||||
# gnome46.services.desktopManager.gnome.enable = true;
|
||||
# gnome46.services.displayManager.gdm.enable = true;
|
||||
|
||||
# Services configs
|
||||
services = {
|
||||
# Enable the X11 windowing system.
|
||||
@@ -80,12 +75,17 @@ in {
|
||||
# Enable Desktop Environment.
|
||||
displayManager = {
|
||||
gdm.enable = gnome;
|
||||
sddm.enable = plasma;
|
||||
defaultSession = if plasma then "plasma" else "gnome";
|
||||
};
|
||||
|
||||
desktopManager.gnome.enable = gnome;
|
||||
};
|
||||
|
||||
# Enable Desktop Environment.
|
||||
displayManager = {
|
||||
sddm.enable = plasma;
|
||||
defaultSession = if plasma then "plasma" else "gnome";
|
||||
};
|
||||
|
||||
# displayManager.gdm.enable = gnome;
|
||||
# desktopManager.gnome.enable = gnome;
|
||||
desktopManager.plasma6.enable = plasma;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
fileSystems."/" = {
|
||||
device = "none";
|
||||
fsType = "tmpfs";
|
||||
options = [ "defaults" "size=32G" "mode=755" ];
|
||||
options = [ "defaults" "size=256G" "mode=755" ];
|
||||
};
|
||||
|
||||
fileSystems."/nix" = {
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"org/gnome/desktop/peripherals/mouse".accel-profile = "flat";
|
||||
"org/gnome/desktop/peripherals/touchpad".two-finger-scrolling-enabled = true;
|
||||
"org/gnome/desktop/peripherals/touchpad".tap-to-click = true;
|
||||
"org/gnome/mutter".experimental-features = ["scale-monitor-framebuffer"];
|
||||
"org/gnome/mutter".experimental-features = [ "scale-monitor-framebuffer" "variable-refresh-rate" ];
|
||||
"org/gnome/tweaks".show-extensions-notice = false;
|
||||
"org/gnome/shell".enabled-extensions = [
|
||||
"appindicatorsupport@rgcjonas.gmail.com"
|
||||
|
||||
Reference in New Issue
Block a user