mirror of
https://github.com/youwen5/liminalOS.git
synced 2025-06-19 21:49:52 -07:00
update: migrate to nixos-unstable
also fixes broken easyeffects build by pinning to 24.05 (uakari)
This commit is contained in:
parent
5fa8e27709
commit
7d3b8a6dc5
5 changed files with 43 additions and 15 deletions
18
flake.nix
18
flake.nix
|
@ -2,11 +2,12 @@
|
|||
description = "System configuration flake.";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-24.05";
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
stablepkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
||||
catppuccin.url = "github:catppuccin/nix";
|
||||
# zimfw.url = "github:joedevivo/zimfw.nix";
|
||||
lanzaboote = {
|
||||
|
@ -17,8 +18,8 @@
|
|||
};
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ self, nixpkgs, home-manager, catppuccin, lanzaboote, ... }@inputs: {
|
||||
outputs = { self, nixpkgs, home-manager, catppuccin, lanzaboote, stablepkgs
|
||||
, ... }@inputs: {
|
||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt;
|
||||
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
|
@ -47,6 +48,15 @@
|
|||
};
|
||||
})
|
||||
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
easyeffects =
|
||||
stablepkgs.legacyPackages.${self.system}.easyeffects;
|
||||
})
|
||||
];
|
||||
}
|
||||
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue