From 7c0a075a8d7c33e785f38dc190be2f807e9b76c4 Mon Sep 17 00:00:00 2001 From: uku Date: Thu, 18 Jan 2024 15:21:54 +0100 Subject: [PATCH] move common and desktop to modules dir --- {systems => modules}/common.nix | 0 {systems => modules}/desktop.nix | 0 systems/default.nix | 6 +++--- 3 files changed, 3 insertions(+), 3 deletions(-) rename {systems => modules}/common.nix (100%) rename {systems => modules}/desktop.nix (100%) diff --git a/systems/common.nix b/modules/common.nix similarity index 100% rename from systems/common.nix rename to modules/common.nix diff --git a/systems/desktop.nix b/modules/desktop.nix similarity index 100% rename from systems/desktop.nix rename to modules/desktop.nix diff --git a/systems/default.nix b/systems/default.nix index ad06292..f1ba33a 100644 --- a/systems/default.nix +++ b/systems/default.nix @@ -23,15 +23,15 @@ mapNixOS = lib.mapAttrs (toSystem inputs.nixpkgs.lib.nixosSystem); nixos = with inputs; [ - ./common.nix + ../modules/common.nix ragenix.nixosModules.default + home-manager.nixosModules.home-manager ]; desktop = with inputs; [ - ./desktop.nix + ../modules/desktop.nix lanzaboote.nixosModules.lanzaboote - home-manager.nixosModules.home-manager catppuccin.nixosModules.catppuccin ] ++ nixos;