getting kaladin in line with syl
This commit is contained in:
		
							parent
							
								
									b80d53009a
								
							
						
					
					
						commit
						1cab8cc03b
					
				
					 1 changed files with 71 additions and 17 deletions
				
			
		| 
						 | 
				
			
			@ -95,7 +95,6 @@
 | 
			
		|||
  users.users.chris = {
 | 
			
		||||
    isNormalUser = true;
 | 
			
		||||
    extraGroups = [ "wheel" "networkmanager" "input" ]; # Enable ‘sudo’ for the user.
 | 
			
		||||
    shell = pkgs.zsh;
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  programs.partition-manager.enable = true;
 | 
			
		||||
| 
						 | 
				
			
			@ -125,8 +124,14 @@
 | 
			
		|||
    zip
 | 
			
		||||
    gzip
 | 
			
		||||
    usbutils
 | 
			
		||||
    binutils
 | 
			
		||||
    hunspell
 | 
			
		||||
    hunspellDicts.en_US
 | 
			
		||||
    git
 | 
			
		||||
    openssh
 | 
			
		||||
    samba
 | 
			
		||||
    ark
 | 
			
		||||
    dash
 | 
			
		||||
    kget
 | 
			
		||||
    krename
 | 
			
		||||
    kwallet-pam
 | 
			
		||||
| 
						 | 
				
			
			@ -135,29 +140,78 @@
 | 
			
		|||
    sddm-kcm
 | 
			
		||||
    ydotool
 | 
			
		||||
    bottles
 | 
			
		||||
    qutebrowser
 | 
			
		||||
    exa mpv yt-dlp rofi-emoji
 | 
			
		||||
    nerdfonts latte-dock bat
 | 
			
		||||
    libsForQt5.bismuth bc libnotify
 | 
			
		||||
    rofi-wayland ripgrep
 | 
			
		||||
    sysstat procs papirus-icon-theme
 | 
			
		||||
    phinger-cursors plasma-hud kde-cli-tools
 | 
			
		||||
    macchina meson ninja cmake gnumake
 | 
			
		||||
    extra-cmake-modules gcc gzip 
 | 
			
		||||
    htop btop firefox kate kdialog openlp
 | 
			
		||||
    easyeffects libreoffice-fresh vlc
 | 
			
		||||
    neochat haskellPackages.greenclip
 | 
			
		||||
    pulsemixer any-nix-shell wtype
 | 
			
		||||
    spotdl kdenlive ffmpeg
 | 
			
		||||
    exa
 | 
			
		||||
    mpv
 | 
			
		||||
    yt-dlp
 | 
			
		||||
    rofi-emoji
 | 
			
		||||
    nerdfonts
 | 
			
		||||
    latte-dock
 | 
			
		||||
    bat
 | 
			
		||||
    libsForQt5.bismuth
 | 
			
		||||
    libnotify
 | 
			
		||||
    rofi-wayland
 | 
			
		||||
    ripgrep
 | 
			
		||||
    bc 
 | 
			
		||||
    sysstat
 | 
			
		||||
    procs
 | 
			
		||||
    papirus-icon-theme
 | 
			
		||||
    phinger-cursors
 | 
			
		||||
    plasma-hud
 | 
			
		||||
    kde-cli-tools
 | 
			
		||||
    macchina
 | 
			
		||||
    meson
 | 
			
		||||
    ninja
 | 
			
		||||
    gnumake
 | 
			
		||||
    gcc
 | 
			
		||||
    gdb
 | 
			
		||||
    clang
 | 
			
		||||
    cmake 
 | 
			
		||||
    extra-cmake-modules
 | 
			
		||||
    gzip 
 | 
			
		||||
    htop
 | 
			
		||||
    btop
 | 
			
		||||
    firefox
 | 
			
		||||
    kate
 | 
			
		||||
    kdialog
 | 
			
		||||
    openlp
 | 
			
		||||
    libreoffice-fresh
 | 
			
		||||
    vlc
 | 
			
		||||
    neochat
 | 
			
		||||
    haskellPackages.greenclip
 | 
			
		||||
    pulsemixer
 | 
			
		||||
    any-nix-shell
 | 
			
		||||
    wtype
 | 
			
		||||
    spotdl
 | 
			
		||||
    kdenlive
 | 
			
		||||
    ffmpeg
 | 
			
		||||
    neofetch
 | 
			
		||||
    xdotool
 | 
			
		||||
    fennel
 | 
			
		||||
  ];
 | 
			
		||||
 | 
			
		||||
  # EMACS
 | 
			
		||||
  services.emacs.package = pkgs.emacsPgtkNativeComp;
 | 
			
		||||
  services.emacs.package = with pkgs; ((emacsPackagesFor emacsPgtkNativeComp).emacsWithPackages (epkgs: [ epkgs.vterm epkgs.magit epkgs.pdf-tools ]));
 | 
			
		||||
  nixpkgs.overlays = [
 | 
			
		||||
 | 
			
		||||
    (import (builtins.fetchTarball {
 | 
			
		||||
      url = https://github.com/nix-community/emacs-overlay/archive/master.tar.gz;
 | 
			
		||||
      sha256 = "04dgvgsb0bg3k20j7y0y7yn7yks5cfgwmxhlbh6d9aa9asvnbzil";
 | 
			
		||||
      sha256 = "1pd14gigm5bznzd8k88dq9scicw1zqknm87bnqmd0z556g9ir60f";
 | 
			
		||||
    }))
 | 
			
		||||
 | 
			
		||||
    (self: super:
 | 
			
		||||
      {
 | 
			
		||||
        myAwesome = super.awesome.overrideAttrs (old: rec {
 | 
			
		||||
          pname = "myAwesome";
 | 
			
		||||
          version = "git-20220508-c539e0e";
 | 
			
		||||
          src = super.fetchFromGitHub {
 | 
			
		||||
            owner = "awesomeWM";
 | 
			
		||||
            repo = "awesome";
 | 
			
		||||
            rev = "c539e0e4350a42f813952fc28dd8490f42d934b3";
 | 
			
		||||
            sha256 = "EDAL7NnLF2BiVI8DAlEciiZtDmwXOzCPypGTrlN/OoQ=";
 | 
			
		||||
          };
 | 
			
		||||
        });
 | 
			
		||||
      }
 | 
			
		||||
    )
 | 
			
		||||
  ];
 | 
			
		||||
  services.emacs.enable = true;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue