add wavebox

This commit is contained in:
Daylin Morgan 2022-11-09 19:19:54 +00:00
parent 1b620d05e7
commit 1366e8c097

View file

@ -12,8 +12,6 @@
experimental-features = nix-command flakes experimental-features = nix-command flakes
''; '';
# programs.nix-ld.enable = true;
# networking.hostName = "nixos"; # Define your hostname. # networking.hostName = "nixos"; # Define your hostname.
# time.timeZone = "Europe/Amsterdam"; # time.timeZone = "Europe/Amsterdam";
@ -25,14 +23,8 @@
environment.shells = with pkgs; [ zsh ]; environment.shells = with pkgs; [ zsh ];
# xstuffs
#services.xserver.enable = true; # overrwite default login
#services.xserver.autorun = false;
#services.xserver.displayManager.startx.enable = true;
#services.xserver.windowManager.qtile.enable = true;
#services.xserver.desktopManager.plasma5.enable = true;
# overrwite default login
services.xserver.displayManager.autoLogin.enable = lib.mkForce false; services.xserver.displayManager.autoLogin.enable = lib.mkForce false;
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
@ -44,9 +36,8 @@
]; ];
}; };
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
fuse fuse
zsh zsh
@ -63,38 +54,41 @@
nixpkgs-fmt nixpkgs-fmt
# xdotool # xdotool
wezterm wezterm
# eww # eww
# rofi # rofi
# picom # picom
# dunst # dunst
(wavebox.override {
firefox version = 10.107 .10 })
(python3.withPackages (p: with p; [ pynvim ])) firefox
]; (python3.withPackages (p: with p;
[ pynvim ]))
];
fonts.fonts = with pkgs; [ fonts.fonts = with pkgs; [
font-awesome font-awesome
noto-fonts noto-fonts
noto-fonts-cjk noto-fonts-cjk
noto-fonts-emoji noto-fonts-emoji
noto-fonts-extra noto-fonts-extra
(nerdfonts.override { fonts = [ "FiraCode" ]; }) last-resort
(nerdfonts.override { fonts = [ "FiraCode" ]; })
]; ];
environment.variables = { environment.variables = {
NIX_LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [ NIX_LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [
stdenv.cc.cc stdenv.cc.cc
openssl openssl
zlib # for delta zlib # for delta
fuse # for libfuse/Neovim Appimage fuse # for libfuse/Neovim Appimage
]; ];
NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker"; NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
}; };
} }