mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 11:13:30 -05:00
add stable stylix
This commit is contained in:
parent
cfda1f8740
commit
d19a79c513
1 changed files with 9 additions and 1 deletions
10
flake.nix
10
flake.nix
|
@ -14,6 +14,10 @@
|
||||||
url = "github:nix-community/nixos-wsl";
|
url = "github:nix-community/nixos-wsl";
|
||||||
inputs.nixpkgs.follows = "nix-stable";
|
inputs.nixpkgs.follows = "nix-stable";
|
||||||
};
|
};
|
||||||
|
stylix-stable = {
|
||||||
|
url = "github:danth/stylix/release-24.05";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||||
|
};
|
||||||
home-manager-stable = {
|
home-manager-stable = {
|
||||||
url = "github:nix-community/home-manager/release-24.05";
|
url = "github:nix-community/home-manager/release-24.05";
|
||||||
inputs.nixpkgs.follows = "nix-stable";
|
inputs.nixpkgs.follows = "nix-stable";
|
||||||
|
@ -89,7 +93,11 @@
|
||||||
arm-laptop-evo4b5 = nix-stable.lib.nixosSystem {
|
arm-laptop-evo4b5 = nix-stable.lib.nixosSystem {
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inputs = inputs // {
|
||||||
|
nixpkgs = nix-stable;
|
||||||
|
home-manager = home-manager-stable;
|
||||||
|
stylix = stylix-stable;
|
||||||
|
};
|
||||||
unstable = nixpkgs;
|
unstable = nixpkgs;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
|
|
Loading…
Reference in a new issue