From dd7a86f85112b6a5ab2a3ed5d0779244d380fdba Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Mon, 29 May 2023 01:32:56 -0400 Subject: [PATCH] Added mpv and yt-dlp --- home-config/home-configuration.scm | 1 + home-config/nix-home-manager/home.nix | 1 + mainlaptop.scm | 24 ++++++++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 mainlaptop.scm diff --git a/home-config/home-configuration.scm b/home-config/home-configuration.scm index 3b0cd58..22a9399 100644 --- a/home-config/home-configuration.scm +++ b/home-config/home-configuration.scm @@ -74,6 +74,7 @@ "python-lsp-server" "kdenlive" "sqlite" + "mpv" "git")) (list my-neovim))) diff --git a/home-config/nix-home-manager/home.nix b/home-config/nix-home-manager/home.nix index 39a8c0e..d883f04 100644 --- a/home-config/nix-home-manager/home.nix +++ b/home-config/nix-home-manager/home.nix @@ -34,6 +34,7 @@ noto-fonts noto-fonts-cjk noto-fonts-emoji + yt-dlp # # It is sometimes useful to fine-tune packages, for example, by applying # # overrides. You can do that directly here, just don't forget the diff --git a/mainlaptop.scm b/mainlaptop.scm new file mode 100644 index 0000000..11650bc --- /dev/null +++ b/mainlaptop.scm @@ -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"))))))