Emacs just controls everything now. Why not! Rather than using the builtin NixOS support for EXWM I've added a custom snippet that takes care of the launching. This assumes that the user launching the session has my emacs configuration installed, which I, in practice, always do. * remove setup of i3wm (until I'm comfortable using exwm I will keep the i3 configuration files around) * disable compton (exwm brings its own compositor) * disable auto-starting of emacs user service * enable & configure exwm (also see correlating commits in my emacs.d repository)
		
			
				
	
	
		
			68 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
# 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, ... }:
 | 
						||
 | 
						||
{
 | 
						||
  imports =
 | 
						||
    [
 | 
						||
    ./hardware-configuration.nix
 | 
						||
    ./local-configuration.nix
 | 
						||
    ./packages.nix
 | 
						||
    ./desktop.nix
 | 
						||
    ./dotfiles.nix
 | 
						||
    ];
 | 
						||
 | 
						||
  # Use the systemd-boot EFI boot loader.
 | 
						||
  boot.loader.systemd-boot.enable = true;
 | 
						||
  boot.loader.efi.canTouchEfiVariables = true;
 | 
						||
  hardware.pulseaudio.enable = true;
 | 
						||
  time.timeZone = "Europe/Oslo";
 | 
						||
 | 
						||
  # Configure audio setup for JACK + Overtone
 | 
						||
  boot.kernelModules = [ "snd-seq" "snd-rawmidi" ];
 | 
						||
  hardware.pulseaudio.package = pkgs.pulseaudioFull;
 | 
						||
 | 
						||
  # Configure emacs:
 | 
						||
  # (actually, that's a lie, this only installs emacs!)
 | 
						||
  services.emacs.install = true;
 | 
						||
  services.emacs.defaultEditor = true;
 | 
						||
 | 
						||
  # Enable GNOME keyring (required for Evolution)
 | 
						||
  services.gnome3.gnome-keyring.enable = true;
 | 
						||
 | 
						||
  virtualisation = {
 | 
						||
    # Configure Docker (with socket activation):
 | 
						||
    # Side note: ... why is this in virtualisation? ...
 | 
						||
    docker.enable = true;
 | 
						||
    docker.autoPrune.enable = true;
 | 
						||
  };
 | 
						||
 | 
						||
  # Configure various other applications:
 | 
						||
  programs = {
 | 
						||
    java.enable = true;
 | 
						||
    fish.enable = true;
 | 
						||
    ssh.startAgent = true;
 | 
						||
  };
 | 
						||
 | 
						||
  # Configure user account
 | 
						||
  users.defaultUserShell = pkgs.fish;
 | 
						||
  users.extraUsers.vincent = {
 | 
						||
    extraGroups = [ "wheel" "docker" ];
 | 
						||
    isNormalUser = true;
 | 
						||
    uid = 1000;
 | 
						||
    shell = pkgs.fish;
 | 
						||
  };
 | 
						||
 | 
						||
  security.sudo = {
 | 
						||
    enable = true;
 | 
						||
    extraConfig = "wheel ALL=(ALL:ALL) SETENV: ALL";
 | 
						||
  };
 | 
						||
 | 
						||
  # This value determines the NixOS release with which your system is to be
 | 
						||
  # compatible, in order to avoid breaking some software such as database
 | 
						||
  # servers. You should change this only after NixOS release notes say you
 | 
						||
  # should.
 | 
						||
  system.stateVersion = "17.09"; # Did you read the comment?
 | 
						||
}
 |