From de77aad5a464e8bb1861df79fce2c6ead6be3526 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Tue, 19 Nov 2024 02:56:43 +0530 Subject: [PATCH] feat: Add just target to simply run nix with flakes and nix-command --- common/home.nix | 2 +- justfile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/common/home.nix b/common/home.nix index 5158c8a5..f45bd8ff 100644 --- a/common/home.nix +++ b/common/home.nix @@ -119,7 +119,7 @@ in { xdg.enable = true; xdg.userDirs = { enable = device.isLinux; - music = "${config.home.homeDirectory}/Nextcloud/Music"; + # music = "${config.home.homeDirectory}/Nextcloud/Music"; }; programs = { diff --git a/justfile b/justfile index bc32b888..e37aecb6 100644 --- a/justfile +++ b/justfile @@ -17,6 +17,8 @@ build: build: nixos-rebuild build --flake . --show-trace +nix args: + nix --extra-experimental-features "nix-command flakes" {{args}} home: nix --extra-experimental-features "nix-command flakes" run home-manager/master -- switch --flake . --show-trace