multiple updates

This commit is contained in:
2025-11-18 04:22:01 +03:00
parent 1c3787a3d6
commit ccc2cdab20
10 changed files with 68 additions and 212 deletions
+10 -16
View File
@@ -12,24 +12,18 @@
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
illogical-flake = {
url = "github:soymou/illogical-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ nixpkgs, home-manager, illogical-flake, ... }:
let system = "x86_64-linux";
outputs = inputs@{ nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
username = "krosh"; # TODO: make it universal
in {
homeConfigurations.krosh = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.${system};
modules = [
./home.nix
# illogical-flake.homeManagerModules.default
# { programs.illogical-impulse.enable = true; }
];
extraSpecialArgs = { inherit inputs; };
};
homeConfigurations.${username} =
home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.${system};
modules = [ ./home.nix ];
extraSpecialArgs = { inherit inputs; };
};
};
}