getting kaladin in line with syl
This commit is contained in:
parent
b80d53009a
commit
1cab8cc03b
|
@ -95,7 +95,6 @@
|
||||||
users.users.chris = {
|
users.users.chris = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "networkmanager" "input" ]; # Enable ‘sudo’ for the user.
|
extraGroups = [ "wheel" "networkmanager" "input" ]; # Enable ‘sudo’ for the user.
|
||||||
shell = pkgs.zsh;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.partition-manager.enable = true;
|
programs.partition-manager.enable = true;
|
||||||
|
@ -125,8 +124,14 @@
|
||||||
zip
|
zip
|
||||||
gzip
|
gzip
|
||||||
usbutils
|
usbutils
|
||||||
|
binutils
|
||||||
|
hunspell
|
||||||
|
hunspellDicts.en_US
|
||||||
git
|
git
|
||||||
|
openssh
|
||||||
|
samba
|
||||||
ark
|
ark
|
||||||
|
dash
|
||||||
kget
|
kget
|
||||||
krename
|
krename
|
||||||
kwallet-pam
|
kwallet-pam
|
||||||
|
@ -135,29 +140,78 @@
|
||||||
sddm-kcm
|
sddm-kcm
|
||||||
ydotool
|
ydotool
|
||||||
bottles
|
bottles
|
||||||
qutebrowser
|
exa
|
||||||
exa mpv yt-dlp rofi-emoji
|
mpv
|
||||||
nerdfonts latte-dock bat
|
yt-dlp
|
||||||
libsForQt5.bismuth bc libnotify
|
rofi-emoji
|
||||||
rofi-wayland ripgrep
|
nerdfonts
|
||||||
sysstat procs papirus-icon-theme
|
latte-dock
|
||||||
phinger-cursors plasma-hud kde-cli-tools
|
bat
|
||||||
macchina meson ninja cmake gnumake
|
libsForQt5.bismuth
|
||||||
extra-cmake-modules gcc gzip
|
libnotify
|
||||||
htop btop firefox kate kdialog openlp
|
rofi-wayland
|
||||||
easyeffects libreoffice-fresh vlc
|
ripgrep
|
||||||
neochat haskellPackages.greenclip
|
bc
|
||||||
pulsemixer any-nix-shell wtype
|
sysstat
|
||||||
spotdl kdenlive ffmpeg
|
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
|
# EMACS
|
||||||
services.emacs.package = pkgs.emacsPgtkNativeComp;
|
services.emacs.package = with pkgs; ((emacsPackagesFor emacsPgtkNativeComp).emacsWithPackages (epkgs: [ epkgs.vterm epkgs.magit epkgs.pdf-tools ]));
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
|
|
||||||
(import (builtins.fetchTarball {
|
(import (builtins.fetchTarball {
|
||||||
url = https://github.com/nix-community/emacs-overlay/archive/master.tar.gz;
|
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;
|
services.emacs.enable = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue