This commit is contained in:
2025-08-04 16:01:18 +03:00
parent 52b6290e1c
commit 20ad33b742
8 changed files with 93 additions and 14 deletions
+19 -5
View File
@@ -17,13 +17,27 @@ let
self.nixosModules.software.beets
self.nixosModules.server.open-webui
#self.homeConfigurations.default.nixosModule
(inputs.self.homeConfigurations.default {
inherit inputs;
device.type = deviceType;
}).nixosModule
self.homeConfigurations.default.nixosModule
# (self.homeConfigurations.default.nixosModule {
# inherit inputs;
# config.device.type = deviceType;
# })
# ( {
# extraSpecialArgs = {
# inherit inputs;
# inherit (config.device) type;
# #deviceType = config.device.type;
# };
# })
];
home-manager = {
extraSpecialArgs = {
inherit inputs;
deviceType = config.device.type; # Переименовываем type в deviceType
};
};
fileSystems = {
# beets
"/mnt/beets/music" = {