From e0215001bef8cbcfb986d2332c595555998bc96c Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 27 Jan 2025 23:55:43 +0100 Subject: [PATCH] feat: adding the flake files --- flake.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..090559a --- /dev/null +++ b/flake.nix @@ -0,0 +1,17 @@ +{ + description = "NixOS Configuration"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-23.11"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { self, nixpkgs, flake-utils, ... }@inputs: + { + nixosConfigurations."nixos-fix" = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ ./configuration.nix ]; + }; + }; +}