Files
nixos/flake.nix
Larra Emily Sarah 5028f6dfc8 commit
2025-12-20 21:08:16 +01:00

38 lines
771 B
Nix

{
description = "LESA OS";
inputs = {
# dafault unstable
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
#latest stable
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-25.05";
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
nixpkgs-stable,
zen-browser,
...
} @ inputs: {
nixosConfigurations.ArcticFox = nixpkgs.lib.nixosSystem {
specialArgs = let
system = "x86_64-linux";
in {
inherit inputs;
pkgs-stable = import nixpkgs-stable {
inherit system;
config.allowUnfree = true;
};
};
modules = [./configuration.nix];
};
};
}