initial nixos flake setup

This commit is contained in:
aditya
2026-05-09 03:23:16 +05:30
commit 0b65bb0b7f
10 changed files with 319 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{ inputs, ... }:
{
nixpkgs.overlays = [
(final: prev:
let
unstable-pkgs = import inputs.nixpkgs-unstable {
inherit (prev) system;
config.allowUnfree = true;
config.allowUnsupportedSystem = true;
};
in
{
inherit (unstable-pkgs) ollama kdePackages sddm;
unstable = unstable-pkgs;
}
)
];
}