-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
packages moved configuration.nix -> system/packages.nix
- Loading branch information
1 parent
87f0594
commit 727345d
Showing
3 changed files
with
96 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
{ config, pkgs, ... }: | ||
|
||
{ | ||
|
||
programs = { | ||
neovim = { | ||
enable = true; | ||
defaultEditor = true; | ||
}; | ||
zsh = { | ||
enable = true; | ||
}; | ||
}; | ||
# Allow unfree packages | ||
nixpkgs.config.allowUnfree = true; | ||
|
||
# List packages installed in system profile. To search, run: | ||
# $ nix search wget | ||
environment.systemPackages = with pkgs; [ | ||
bat | ||
brave | ||
busybox | ||
cmake | ||
dmidecode | ||
dunst | ||
docker | ||
ffmpeg_6-full | ||
gcc | ||
git | ||
go | ||
gphoto2 | ||
grim | ||
hyprland | ||
imv | ||
jq | ||
killall | ||
kitty | ||
libnotify | ||
meson | ||
mpv | ||
ncdu | ||
neofetch | ||
neovim | ||
networkmanagerapplet | ||
ninja | ||
obsidian | ||
pavucontrol | ||
pipewire | ||
playerctl | ||
python311Full | ||
ripgrep | ||
rofi-wayland | ||
scdoc | ||
signal-desktop | ||
slurp | ||
spotify | ||
stow | ||
swww | ||
v4l-utils | ||
vimiv-qt | ||
waybar | ||
wayland-protocols | ||
wayland-utils | ||
webcord | ||
wl-clipboard | ||
wlroots | ||
xdg-desktop-portal-gtk | ||
xdg-desktop-portal-hyprland | ||
xdg-utils | ||
xwayland | ||
]; | ||
|
||
# Fonts | ||
fonts.fonts = with pkgs; [ | ||
# Nerd fonts | ||
nerdfonts | ||
meslo-lgs-nf | ||
]; | ||
|
||
nixpkgs.overlays = [ | ||
(self: super: { | ||
waybar = super.waybar.overrideAttrs (oldAttrs: { | ||
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ]; | ||
}); | ||
}) | ||
]; | ||
} |