Added popos shell, Xorg gdm, victor mono

This commit is contained in:
Giulio De Pasquale 2022-02-15 10:52:39 +00:00
parent e098a2268b
commit 685ff000d7
3 changed files with 13 additions and 4 deletions

View File

@ -26,7 +26,8 @@
nixpkgs = { config = { allowUnfree = true; }; }; nixpkgs = { config = { allowUnfree = true; }; };
fonts.fonts = with pkgs; [ cascadia-code ]; fonts.fontconfig.enable = true;
fonts.fonts = with pkgs; [ cascadia-code victor-mono ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
file file

View File

@ -4,7 +4,10 @@
services = { services = {
xserver = { xserver = {
enable = true; enable = true;
displayManager.gdm.enable = true; displayManager.gdm = {
enable = true;
wayland = false;
};
desktopManager.gnome.enable = true; desktopManager.gnome.enable = true;
libinput.enable = true; libinput.enable = true;
layout = "us"; layout = "us";
@ -13,8 +16,13 @@
dbus.packages = with pkgs; [ gnome3.dconf ]; dbus.packages = with pkgs; [ gnome3.dconf ];
udev.packages = with pkgs; [ gnome3.gnome-settings-daemon ]; udev.packages = with pkgs; [ gnome3.gnome-settings-daemon ];
gvfs.enable = true;
}; };
environment.systemPackages = with pkgs; [ gnomeExtensions.appindicator ]; environment.systemPackages = with pkgs; [
gnomeExtensions.appindicator
gnomeExtensions.sound-output-device-chooser
pkgs.unstable.gnomeExtensions.pop-shell
];
security.pam.services.gdm.enableGnomeKeyring = true; security.pam.services.gdm.enableGnomeKeyring = true;
} }

View File

@ -10,7 +10,7 @@
VISUAL = "nvim"; VISUAL = "nvim";
}; };
packages = with pkgs; [ rizin sshfs nixfmt ]; packages = with pkgs; [ rizin sshfs nixfmt victor-mono ];
}; };
programs.neovim = { programs.neovim = {