mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-16 14:51:54 +03:00
one win
This commit is contained in:
+19
-5
@@ -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" = {
|
||||
|
||||
Reference in New Issue
Block a user