From 969a9a311d24548c6632ddcdc4f903ffa48c5ca6 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 8 Jun 2025 17:11:30 +0530 Subject: Init commit with shit that does it --- flake.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..d7154c2 --- /dev/null +++ b/flake.nix @@ -0,0 +1,16 @@ +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nixos-hardware.url = "github:NixOS/nixos-hardware"; + }; + + outputs = { self, nixpkgs, nixos-hardware, ... }: { + nixosConfigurations.bacchus = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + "${nixos-hardware}/lenovo/ideapad" + ./configuration.nix + ]; + }; + }; +} -- cgit v1.3.1