feat: update flake.lock to fix asahi and standardize specialisation
Some checks are pending
Check flake / check (push) Waiting to run

This commit is contained in:
Youwen Wu 2025-02-01 22:36:24 -08:00
parent 910216d138
commit 0d729d187f
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
4 changed files with 23 additions and 22 deletions

View file

@ -74,16 +74,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1737623554, "lastModified": 1738477579,
"narHash": "sha256-aO1cdK1kp/WC6mSoX9WGiGcYKgXjM7xh3f4SoJOCjjU=", "narHash": "sha256-MfCQoXl3EAuNwAyLv9q6wUF11hoNxD9+SaTPDrnYNJs=",
"owner": "youwen5", "owner": "youwen5",
"repo": "nixos-asahi", "repo": "nixos-asahi",
"rev": "8c659769c774b62a4ab57a817e713339f9d14021", "rev": "b7c806b9d600dbc006123d4aeb641ecb3eb4a08d",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "youwen5", "owner": "youwen5",
"ref": "unstable", "ref": "fix-lsp-plugins",
"repo": "nixos-asahi", "repo": "nixos-asahi",
"type": "github" "type": "github"
} }

View file

@ -52,7 +52,7 @@
apple-silicon = { apple-silicon = {
# url = "github:tpwrules/nixos-apple-silicon"; # url = "github:tpwrules/nixos-apple-silicon";
# url = "github:zzywysm/nixos-asahi"; # url = "github:zzywysm/nixos-asahi";
url = "github:youwen5/nixos-asahi/unstable"; url = "github:youwen5/nixos-asahi/fix-lsp-plugins";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };

View file

@ -95,21 +95,4 @@
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.05"; # Did you read the comment? 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";
};
};
} }

View file

@ -39,4 +39,22 @@
base16Scheme = lib.mkDefault "${pkgs.base16-schemes}/share/themes/oxocarbon-dark.yaml"; base16Scheme = lib.mkDefault "${pkgs.base16-schemes}/share/themes/oxocarbon-dark.yaml";
polarity = lib.mkDefault "dark"; 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";
};
};
} }