nixos-configuration/flake.nix
Wroclaw c5246a1b46 treewide: adopt flakes
after using non-flake setup time has arrived to
switch to flakes
eeleco clearly won and flakes are the future
2025-04-01 01:33:23 +02:00

32 lines
645 B
Nix

{
inputs = {
nixos-vscode-server = {
type = "github";
owner = "nix-community";
repo = "nixos-vscode-server";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
nixpkgs = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-24.11";
};
nixpkgs-unstable = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable";
};
cosmic-modules = {
type = "github";
owner = "lilyinstarlight";
repo = "nixos-cosmic";
};
};
outputs = inputs: import ./outputs.nix {
inherit inputs;
};
}