switch to gnome
This commit is contained in:
parent
bc40956b3a
commit
a419bb1dda
5 changed files with 12 additions and 7 deletions
|
@ -33,11 +33,11 @@
|
|||
/etc/nixos/hardware-configuration.nix
|
||||
../../boot.nix
|
||||
../../common.nix
|
||||
../../gfx-intel.nix
|
||||
../../gfx-nvidia-optimus.nix
|
||||
../../zerotier.nix
|
||||
../../distributed-builds.nix
|
||||
../../libvirt.nix
|
||||
../../i3/system.nix
|
||||
../../gnome/system.nix
|
||||
../../backups.nix
|
||||
];
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ in
|
|||
../../home-common.nix
|
||||
../../programs/git.nix
|
||||
../../gui.nix
|
||||
../../i3/home.nix
|
||||
../../gnome/home.nix
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
@ -12,6 +12,9 @@ in
|
|||
environment.systemPackages = [ nvidia-offload ];
|
||||
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
hardware.opengl = { enable = true; };
|
||||
|
||||
hardware.nvidia.modesetting.enable = true;
|
||||
hardware.nvidia.prime.offload.enable = true;
|
||||
hardware.nvidia.prime = {
|
||||
intelBusId = "PCI:0:2:0";
|
||||
|
|
|
@ -3,10 +3,11 @@
|
|||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.gdm.enable = true;
|
||||
displayManager.gdm.wayland = false;
|
||||
displayManager.gdm.wayland = true;
|
||||
displayManager.gdm.nvidiaWayland = true;
|
||||
desktopManager.gnome3.enable = true;
|
||||
};
|
||||
services.dbus.packages = with pkgs; [ gnome2.GConf ];
|
||||
services.dbus.packages = with pkgs; [ gnome2.GConf gnome3.dconf ];
|
||||
users.users.cyryl.packages = with pkgs; [];
|
||||
}
|
||||
|
||||
|
|
|
@ -26,11 +26,12 @@
|
|||
mindforger
|
||||
evince signal-desktop
|
||||
vlc
|
||||
jetbrains.goland unstable.jetbrains.clion jetbrains.idea-ultimate unstable.android-studio
|
||||
jetbrains.goland jetbrains.clion jetbrains.idea-ultimate android-studio
|
||||
yubico-piv-tool yubikey-personalization yubikey-personalization-gui yubikey-manager-qt
|
||||
slack discord gnome3.nautilus gnome3.eog
|
||||
hopper
|
||||
unstable.qemu unstable.aqemu unstable.foldingathome
|
||||
qemu aqemu foldingathome
|
||||
spotify shotwell
|
||||
gnome-builder flatpak-builder flatpak python38Packages.lxml python38Packages.jedi meson
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue