Compare commits
3 commits
483e475dda
...
3a9422d6f1
Author | SHA1 | Date | |
---|---|---|---|
Serĉanto de Scio | 3a9422d6f1 | ||
Serĉanto de Scio | 4b4afa07c2 | ||
Serĉanto de Scio | d161a4df25 |
|
@ -15,7 +15,7 @@
|
|||
environment = {
|
||||
systemPackages = with pkgs; [
|
||||
cabal2nix # Convert Cabal files into Nix build instructions
|
||||
nixfmt # An opinionated formatter for Nix
|
||||
nixfmt-rfc-style # An opinionated formatter for Nix
|
||||
nix-prefetch-github # Prefetch sources from github
|
||||
nix-prefetch-git # Prefetch sources from git
|
||||
nixpkgs-review # Review pull-requests on https://github.com/NixOS/nixpkgs
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
...
|
||||
}: {
|
||||
services = {
|
||||
libinput.enable = true; # Enable touchpad support.
|
||||
pantheon = {
|
||||
apps.enable = true;
|
||||
contractor.enable = true;
|
||||
|
@ -14,7 +15,6 @@
|
|||
desktopManager = {
|
||||
pantheon.enable = true;
|
||||
};
|
||||
libinput.enable = true; # Enable touchpad support.
|
||||
};
|
||||
};
|
||||
programs = {
|
||||
|
|
|
@ -8,6 +8,17 @@
|
|||
|
||||
services = {
|
||||
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.
|
||||
|
||||
xserver = {
|
||||
|
@ -18,19 +29,9 @@
|
|||
plasma5.enable = true; # Enable Plasma desktop environment
|
||||
};
|
||||
displayManager = {
|
||||
defaultSession = "none+xmonad"; # Set to use xmonad as default
|
||||
gdm.enable = false; # Enable the GNOME display manager
|
||||
sddm.enable = false; # Enable the Plasma display manager
|
||||
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 = {
|
||||
# Open configuration for the window manager.
|
||||
xmonad.enable = true; # Enable xmonad.
|
||||
|
@ -44,6 +45,7 @@
|
|||
haskellPackages.xmonad
|
||||
];
|
||||
};
|
||||
xkb.layout = "us"; # Set your preferred keyboard layout.
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue