Compare commits

..

No commits in common. "3a9422d6f1c12fde75e29dbcfd243ffdf3706be0" and "483e475dda606239392bd4f092336ee2e595f301" have entirely different histories.

3 changed files with 12 additions and 14 deletions

View file

@ -15,7 +15,7 @@
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [
cabal2nix # Convert Cabal files into Nix build instructions cabal2nix # Convert Cabal files into Nix build instructions
nixfmt-rfc-style # An opinionated formatter for Nix nixfmt # An opinionated formatter for Nix
nix-prefetch-github # Prefetch sources from github nix-prefetch-github # Prefetch sources from github
nix-prefetch-git # Prefetch sources from git nix-prefetch-git # Prefetch sources from git
nixpkgs-review # Review pull-requests on https://github.com/NixOS/nixpkgs nixpkgs-review # Review pull-requests on https://github.com/NixOS/nixpkgs

View file

@ -5,7 +5,6 @@
... ...
}: { }: {
services = { services = {
libinput.enable = true; # Enable touchpad support.
pantheon = { pantheon = {
apps.enable = true; apps.enable = true;
contractor.enable = true; contractor.enable = true;
@ -15,6 +14,7 @@
desktopManager = { desktopManager = {
pantheon.enable = true; pantheon.enable = true;
}; };
libinput.enable = true; # Enable touchpad support.
}; };
}; };
programs = { programs = {

View file

@ -8,17 +8,6 @@
services = { services = {
devmon.enable = true; # Enable external device automounting. devmon.enable = true; # Enable external device automounting.
displayManager = {
defaultSession = "none+xmonad"; # Set to use xmonad as default
sddm.enable = false; # Enable the Plasma display manager
};
libinput = {
enable = true; # Enable touchpad support.
touchpad = {
tapping = true;
tappingButtonMap = "lrm"; # Set the touchpad button mappeing
};
};
udisks2.enable = true; # Enable udisks2. udisks2.enable = true; # Enable udisks2.
xserver = { xserver = {
@ -29,9 +18,19 @@
plasma5.enable = true; # Enable Plasma desktop environment plasma5.enable = true; # Enable Plasma desktop environment
}; };
displayManager = { displayManager = {
defaultSession = "none+xmonad"; # Set to use xmonad as default
gdm.enable = false; # Enable the GNOME display manager gdm.enable = false; # Enable the GNOME display manager
sddm.enable = false; # Enable the Plasma display manager
lightdm.greeters.pantheon.enable = true; lightdm.greeters.pantheon.enable = true;
}; };
layout = "us"; # Set your preferred keyboard layout.
libinput = {
enable = true; # Enable touchpad support.
touchpad = {
tapping = true;
tappingButtonMap = "lrm"; # Set the touchpad button mappeing
};
};
windowManager = { windowManager = {
# Open configuration for the window manager. # Open configuration for the window manager.
xmonad.enable = true; # Enable xmonad. xmonad.enable = true; # Enable xmonad.
@ -45,7 +44,6 @@
haskellPackages.xmonad haskellPackages.xmonad
]; ];
}; };
xkb.layout = "us"; # Set your preferred keyboard layout.
}; };
}; };