mirror of
https://github.com/Andrey0189/nixos-config-reborn.git
synced 2025-09-15 10:06:00 +03:00
move packages to home-manager
This commit is contained in:
50
home-manager/home-packages.nix
Normal file
50
home-manager/home-packages.nix
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{ pkgs, ... }: {
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
# Packages in each category are sorted alphabetically
|
||||||
|
|
||||||
|
# Desktop apps
|
||||||
|
imv
|
||||||
|
mpv
|
||||||
|
obs-studio
|
||||||
|
obsidian
|
||||||
|
teams-for-linux
|
||||||
|
telegram-desktop
|
||||||
|
vesktop
|
||||||
|
|
||||||
|
# CLI utils
|
||||||
|
bottom
|
||||||
|
brightnessctl
|
||||||
|
cliphist
|
||||||
|
ffmpeg
|
||||||
|
git-graph
|
||||||
|
grimblast
|
||||||
|
htop
|
||||||
|
microfetch
|
||||||
|
playerctl
|
||||||
|
ranger
|
||||||
|
ripgrep
|
||||||
|
showmethekey
|
||||||
|
silicon
|
||||||
|
unzip
|
||||||
|
wget
|
||||||
|
wl-clipboard
|
||||||
|
wtype
|
||||||
|
yt-dlp
|
||||||
|
zip
|
||||||
|
|
||||||
|
# Coding stuff
|
||||||
|
nodejs
|
||||||
|
python311
|
||||||
|
|
||||||
|
# WM stuff
|
||||||
|
libsForQt5.xwaylandvideobridge
|
||||||
|
libnotify
|
||||||
|
xdg-desktop-portal-gtk
|
||||||
|
xdg-desktop-portal-hyprland
|
||||||
|
|
||||||
|
# Other
|
||||||
|
bemoji
|
||||||
|
];
|
||||||
|
}
|
@@ -1,6 +1,7 @@
|
|||||||
{ homeStateVersion, user, ... }: {
|
{ homeStateVersion, user, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./modules
|
./modules
|
||||||
|
./home-packages.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
Reference in New Issue
Block a user