diff options
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 16 |
1 files changed, 16 insertions, 0 deletions
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 + ]; + }; + }; +} |
