diff --git a/flake.lock b/flake.lock index de9a62b..94f73d8 100644 --- a/flake.lock +++ b/flake.lock @@ -74,16 +74,16 @@ ] }, "locked": { - "lastModified": 1737623554, - "narHash": "sha256-aO1cdK1kp/WC6mSoX9WGiGcYKgXjM7xh3f4SoJOCjjU=", + "lastModified": 1738477579, + "narHash": "sha256-MfCQoXl3EAuNwAyLv9q6wUF11hoNxD9+SaTPDrnYNJs=", "owner": "youwen5", "repo": "nixos-asahi", - "rev": "8c659769c774b62a4ab57a817e713339f9d14021", + "rev": "b7c806b9d600dbc006123d4aeb641ecb3eb4a08d", "type": "github" }, "original": { "owner": "youwen5", - "ref": "unstable", + "ref": "fix-lsp-plugins", "repo": "nixos-asahi", "type": "github" } diff --git a/flake.nix b/flake.nix index 0280c9b..16a7814 100755 --- a/flake.nix +++ b/flake.nix @@ -52,7 +52,7 @@ apple-silicon = { # url = "github:tpwrules/nixos-apple-silicon"; # url = "github:zzywysm/nixos-asahi"; - url = "github:youwen5/nixos-asahi/unstable"; + url = "github:youwen5/nixos-asahi/fix-lsp-plugins"; inputs.nixpkgs.follows = "nixpkgs"; }; diff --git a/reference/hosts/adrastea/configuration.nix b/reference/hosts/adrastea/configuration.nix index feba3a0..d9a4553 100755 --- a/reference/hosts/adrastea/configuration.nix +++ b/reference/hosts/adrastea/configuration.nix @@ -95,21 +95,4 @@ # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = "24.05"; # Did you read the comment? - specialisation = { - dawn.configuration = { - environment.etc."specialisation".text = "dawn"; - liminalOS.theming = { - wallpaper = pkgs.fetchurl { - url = "https://w.wallhaven.cc/full/kx/wallhaven-kxoqx6.jpg"; - hash = "sha256-1cYbDcWutMHaNgvgRZiXFJpxkCZdilrKbjRD3/y25Yc="; - }; - # base16Scheme = "${pkgs.base16-schemes}/share/themes/oxocarbon-dark.yaml"; - base16Scheme = null; - polarity = "light"; - }; - }; - dusk.configuration = { - environment.etc."specialisation".text = "dusk"; - }; - }; } diff --git a/reference/modules/default.nix b/reference/modules/default.nix index 659e1e9..c614ef1 100644 --- a/reference/modules/default.nix +++ b/reference/modules/default.nix @@ -39,4 +39,22 @@ base16Scheme = lib.mkDefault "${pkgs.base16-schemes}/share/themes/oxocarbon-dark.yaml"; polarity = lib.mkDefault "dark"; }; + + specialisation = { + dawn.configuration = { + environment.etc."specialisation".text = "dawn"; + liminalOS.theming = { + wallpaper = pkgs.fetchurl { + url = "https://w.wallhaven.cc/full/kx/wallhaven-kxoqx6.jpg"; + hash = "sha256-1cYbDcWutMHaNgvgRZiXFJpxkCZdilrKbjRD3/y25Yc="; + }; + # base16Scheme = "${pkgs.base16-schemes}/share/themes/oxocarbon-dark.yaml"; + base16Scheme = null; + polarity = "light"; + }; + }; + dusk.configuration = { + environment.etc."specialisation".text = "dusk"; + }; + }; }