Added mpv and yt-dlp

This commit is contained in:
Ryan Schanzenbacher 2023-05-29 01:32:56 -04:00
parent 52472fbfe9
commit af4758a2d7
3 changed files with 26 additions and 0 deletions

View file

@ -74,6 +74,7 @@
"python-lsp-server" "python-lsp-server"
"kdenlive" "kdenlive"
"sqlite" "sqlite"
"mpv"
"git")) "git"))
(list my-neovim))) (list my-neovim)))

View file

@ -34,6 +34,7 @@
noto-fonts noto-fonts
noto-fonts-cjk noto-fonts-cjk
noto-fonts-emoji noto-fonts-emoji
yt-dlp
# # It is sometimes useful to fine-tune packages, for example, by applying # # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the # # overrides. You can do that directly here, just don't forget the

24
mainlaptop.scm Normal file
View file

@ -0,0 +1,24 @@
(use-modules (ryan-config base-system)
(gnu))
(operating-system
(inherit base-operating-system)
(host-name "RyanLaptop")
(mapped-devices (list (mapped-device
(source (uuid
"4de50ae4-e6f5-4f0c-ba4b-dd97b44a2ef2"))
(target "sysroot")
(type luks-device-mapping))))
(file-systems (cons* (file-system
(mount-point "/")
(device "/dev/mapper/sysroot")
(type "ext4")
(dependencies mapped-devices))
(file-system
(mount-point "/boot/efi")
(device (uuid "4C53-D400"
'fat32))
(type "vfat")) %base-file-systems))
(swap-devices
(list
(swap-space (target (uuid "6758bed3-9ff2-49a0-9cc3-7c48eaee6c4a"))))))