nix flake update

This commit is contained in:
Grigory Shipunov 2022-09-27 01:16:19 +02:00
parent 22504fc7c5
commit e8ed378623
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
6 changed files with 70 additions and 32 deletions

View file

@ -3,7 +3,6 @@
{
environment.systemPackages = with pkgs; [
bat
lsd
fd
file
fzf
@ -16,6 +15,7 @@
ripgrep
tealdeer
traceroute
tcpdump
tree
liquidprompt
(aspellWithDicts (ps: with ps; [ en en-science en-computers ru de ]))
@ -49,11 +49,11 @@
};
environment.shellAliases = {
ls = "lsd";
l = "lsd -l";
la = "lsd -la";
ll = "lsd -lah";
lt = "lsd --tree";
ls = "ls --color=auto";
l = "ls -l";
la = "ls -la";
ll = "ls -lah";
lt = "ls --tree";
vim = "nvim";
vf = "$EDITOR $(fzf)";
vff = "$EDITOR $(ls|fzf)";

View file

@ -8,6 +8,7 @@
screen-message
qbittorrent
dino
gajim
imv
mpv
zathura
@ -80,7 +81,7 @@
hardware.bluetooth = {
enable = true;
package = pkgs.bluezFull;
package = pkgs.bluez;
};
programs.zsh.vteIntegration = true;
@ -113,7 +114,7 @@
rofi-wayland
grim
slurp
gnome3.adwaita-icon-theme
gnome.adwaita-icon-theme
i3status-rust
];
};

View file

@ -6,7 +6,7 @@
gqrx
cubicsdr
libusb
libusb1
rtl-sdr
hackrf
soapyhackrf

View file

@ -2,7 +2,7 @@
{
environment.systemPackages = with pkgs; [
virtmanager
virt-manager
];
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];