stylix once again
This commit is contained in:
parent
4dcd29bacb
commit
79a3c7164d
6 changed files with 875 additions and 17 deletions
13
flake.nix
13
flake.nix
|
|
@ -14,6 +14,15 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||
};
|
||||
|
||||
stylix = {
|
||||
url = "github:danth/stylix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
stylix-stable = {
|
||||
url = "github:danth/stylix/release-25.05";
|
||||
inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||
};
|
||||
|
||||
agenix = {
|
||||
url = "github:ryantm/agenix";
|
||||
inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||
|
|
@ -41,6 +50,8 @@
|
|||
nixpkgs-stable,
|
||||
home-manager,
|
||||
home-manager-stable,
|
||||
stylix,
|
||||
stylix-stable,
|
||||
disko,
|
||||
agenix,
|
||||
deploy-rs,
|
||||
|
|
@ -61,6 +72,7 @@
|
|||
let
|
||||
pkgs = if type == "server" then nixpkgs-stable else nixpkgs;
|
||||
hm = if type == "server" then home-manager-stable else home-manager;
|
||||
stlx = if type == "server" then stylix-stable else stylix;
|
||||
hostTypeFlags = {
|
||||
isServer = type == "server";
|
||||
isWorkstation = type == "workstation";
|
||||
|
|
@ -72,6 +84,7 @@
|
|||
hm.nixosModules.default
|
||||
impermanence.nixosModules.impermanence
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
stlx.nixosModules.stylix
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
agenix.overlays.default
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue