add media

This commit is contained in:
Aditya 2024-04-12 11:44:08 +05:30
parent a006fd0889
commit be01d99fd4
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
3 changed files with 7 additions and 2 deletions

View file

@ -48,10 +48,8 @@
# (pkgs.writeShellScriptBin "my-hello" '' # (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!" # echo "Hello, ${config.home.username}!"
# '') # '')
x264
rustc rustc
cargo cargo
mpv
]; ];
nixpkgs.config.permittedInsecurePackages = [ nixpkgs.config.permittedInsecurePackages = [

View file

@ -8,6 +8,7 @@
./gnome-utils ./gnome-utils
./kde-utils ./kde-utils
./kitty ./kitty
./media
./neovim ./neovim
./office ./office
./session-vars ./session-vars

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
home.packages = with pkgs; [
x264
mpv
];
}