Skip to content

Instantly share code, notes, and snippets.

@mtmn
Created May 16, 2023 16:35
Show Gist options
  • Save mtmn/ac6075d27dd0609ff1d4fd51bc91b753 to your computer and use it in GitHub Desktop.
Save mtmn/ac6075d27dd0609ff1d4fd51bc91b753 to your computer and use it in GitHub Desktop.
{ config, pkgs, callPackage, ... }:
{
...
environment.pathsToLink = [ "/libexec" ]; # links /libexec from derivations to /run/current-system/sw
...
services.xserver = {
enable = true;
desktopManager = {
xterm.enable = false;
};
displayManager = {
defaultSession = "none+i3";
};
windowManager.i3 = {
enable = true;
extraPackages = with pkgs; [
dmenu #application launcher most people use
i3status # gives you the default i3 status bar
i3lock #default i3 screen locker
i3blocks #if you are planning on using i3blocks over i3status
];
};
};
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment