switch to gnome for now
This commit is contained in:
parent
07a3d9c39e
commit
870f89f6ff
4 changed files with 17 additions and 2 deletions
|
@ -40,7 +40,7 @@
|
||||||
../common.nix
|
../common.nix
|
||||||
../gfx-intel.nix
|
../gfx-intel.nix
|
||||||
../zerotier.nix
|
../zerotier.nix
|
||||||
../i3/system.nix
|
../gnome/system.nix
|
||||||
../distributed-builds.nix
|
../distributed-builds.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
14
nixos/gnome/home.nix
Normal file
14
nixos/gnome/home.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
services = {
|
||||||
|
kdeconnect = {
|
||||||
|
enable = true;
|
||||||
|
indicator = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
xsession = {
|
||||||
|
enable = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -6,6 +6,7 @@
|
||||||
displayManager.gdm.wayland = false;
|
displayManager.gdm.wayland = false;
|
||||||
desktopManager.gnome3.enable = true;
|
desktopManager.gnome3.enable = true;
|
||||||
};
|
};
|
||||||
|
services.dbus.packages = with pkgs; [ gnome2.GConf ];
|
||||||
users.users.cyryl.packages = with pkgs; [];
|
users.users.cyryl.packages = with pkgs; [];
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
./programs.nix
|
./programs.nix
|
||||||
./links.nix
|
./links.nix
|
||||||
./cli.nix
|
./cli.nix
|
||||||
./i3/home.nix
|
./gnome/home.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue