mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-09 23:49:43 +00:00
add media
This commit is contained in:
parent
a006fd0889
commit
be01d99fd4
3 changed files with 7 additions and 2 deletions
|
@ -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 = [
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
./gnome-utils
|
./gnome-utils
|
||||||
./kde-utils
|
./kde-utils
|
||||||
./kitty
|
./kitty
|
||||||
|
./media
|
||||||
./neovim
|
./neovim
|
||||||
./office
|
./office
|
||||||
./session-vars
|
./session-vars
|
||||||
|
|
6
modules/home-manager/media/default.nix
Normal file
6
modules/home-manager/media/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
x264
|
||||||
|
mpv
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue