From 616a0def587cb9243bd6b08cb96549870f1612da Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sun, 30 Jun 2024 10:00:23 +0200 Subject: Init x220-gnome --- flake.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..4b907d4 --- /dev/null +++ b/flake.nix @@ -0,0 +1,22 @@ +{ + description = "Nixos config flake"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05"; + + # home-manager = { + # url = "github:nix-community/home-manager"; + # inputs.nixpkgs.follows = "nixpkgs"; + # }; + }; + + outputs = { self, nixpkgs, ... }@inputs: { + nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { + specialArgs = {inherit inputs;}; + modules = [ + ./machines/x220-gnome/configuration.nix + # inputs.home-manager.nixosModules.default + ]; + }; + }; +} -- cgit 1.4.1