This commit is contained in:
Don Harper 2022-08-21 19:17:43 -05:00
parent 16c197894c
commit 3a4f2bf580
2 changed files with 11 additions and 12 deletions

View file

@ -1,7 +1,3 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
@ -37,7 +33,7 @@
i18n.defaultLocale = "en_US.utf8"; i18n.defaultLocale = "en_US.utf8";
# Splash screen # Splash screen
boot.plymouth.enable = true; boot.plymouth.enable = false;
boot.plymouth.theme = "breeze"; boot.plymouth.theme = "breeze";
# Enable doas instead of sudo # Enable doas instead of sudo
@ -50,17 +46,17 @@
}]; }];
# Enable the X11 windowing system. # Enable the X11 windowing system.
services.xserver.enable = false; #services.xserver.enable = false;
# Enable the GNOME Desktop Environment. # Enable the GNOME Desktop Environment.
services.xserver.displayManager.gdm.enable = true; #services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = false; #services.xserver.desktopManager.gnome.enable = false;
# Configure keymap in X11 # Configure keymap in X11
services.xserver = { #services.xserver = {
layout = "us"; #layout = "us";
xkbVariant = ""; #xkbVariant = "";
}; #};
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;
@ -107,6 +103,7 @@
gitFull gitFull
gnupg gnupg
mosh mosh
python311
qutebrowser qutebrowser
tailscale tailscale
tmux tmux

View file

@ -89,4 +89,6 @@ in
enable = true; enable = true;
wrapperFeatures.gtk = true; wrapperFeatures.gtk = true;
}; };
services.greetd.package = "greetd.wlgreet";
} }