Skip to content

Commit

Permalink
Use cinnamon over gnome
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed Apr 22, 2024
1 parent 18cc614 commit 1b8cbaf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
5 changes: 0 additions & 5 deletions home/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,6 @@ in {
// (
if isLinux
then {
wm.bspwm = {
enable = true;
num-monitors = "two";
};
wm.hyprland.enable = true;
wm.cinnamon = {
enable = true;
dark-mode = true;
Expand Down
19 changes: 6 additions & 13 deletions system/nixos/astoria/wm.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{lib, ...}: {
{...}: {
imports = [
./wm/cinnamon.nix
./wm/gnome.nix
Expand All @@ -14,20 +14,13 @@

# enable the window managers I use
# NOTE: do not enable gnome and cinnamon as they are mutually exclusive
me.wm.bspwm.enable = true;
me.wm.gnome = {
enable = true;
wayland = true;
};
me.wm.hyprland.enable = true;
me.wm.cinnamon.enable = true;

# overrides
services.xserver.displayManager = {
defaultSession = lib.mkForce "gnome";
};
# services.xserver.displayManager = {
# gdm.enable = lib.mkForce true;
# sddm.enable = lib.mkForce false;
# defaultSession = lib.mkForce "cinnamon";
# defaultSession = lib.mkForce "gnome";
# };
services.xserver.displayManager = {
gdm.enable = true;
};
}

0 comments on commit 1b8cbaf

Please sign in to comment.