From b6f59055d890e72ca5abea71c43014db552d5e5a Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Sat, 24 Jan 2026 16:36:04 +0100 Subject: [PATCH] Fix quickstart.nix --- Readme.org | 2 +- flake.nix | 2 +- homes/julian/quickstart.nix | 16 ++++++++-------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Readme.org b/Readme.org index 71e02d7..72a2881 100644 --- a/Readme.org +++ b/Readme.org @@ -4,7 +4,7 @@ - Install nix using the https://github.com/DeterminateSystems/nix-installer - Then run #+begin_src shell -nix run nixpkgs#home-manager switch --flake git+https://gitlab.julian-mutter.de/julian/dotfiles.git#julian@quickstart +nix run nixpkgs#home-manager -- switch --flake git+https://gitlab.julian-mutter.de/julian/dotfiles.git#julian@quickstart #+end_src - Done diff --git a/flake.nix b/flake.nix index 6bc38c1..bc5b99a 100644 --- a/flake.nix +++ b/flake.nix @@ -166,7 +166,7 @@ }; "julian@quickstart" = lib.homeManagerConfiguration { modules = [ - ./homes/julian/quickstart + ./homes/julian/quickstart.nix ./homes/julian/hm-standalone-config.nix ]; pkgs = pkgsFor.x86_64-linux; diff --git a/homes/julian/quickstart.nix b/homes/julian/quickstart.nix index f77e8b0..718cf37 100644 --- a/homes/julian/quickstart.nix +++ b/homes/julian/quickstart.nix @@ -2,15 +2,15 @@ # If you want to adapt it to a specific device, copy this file with the correct hostname {pkgs, ...}: { imports = [ - ../global + ./global - ../features/fish - ../features/direnv - ../features/neovim - ../features/yazi - ../features/emacs - ../features/nix-helper - ../features/tmux + ./features/fish + ./features/direnv + ./features/neovim + ./features/yazi + ./features/emacs + ./features/nix-helper + ./features/tmux ]; is-nixos = false;