From e555963e7958bccb0d0ca29fabc7f2c22a6f88db Mon Sep 17 00:00:00 2001 From: Luke Else Date: Thu, 20 Mar 2025 15:59:18 +0000 Subject: [PATCH] Corrected missing boilerplate from flake.nix --- flake.nix | 80 +++++++++++++++++++++++++++++++------------------------ 1 file changed, 45 insertions(+), 35 deletions(-) diff --git a/flake.nix b/flake.nix index d167cf5..8d6ca28 100644 --- a/flake.nix +++ b/flake.nix @@ -1,37 +1,47 @@ -outputs = { nixpkgs, home-manager, ... }: - let - system = "x86_64-linux"; - in { - nixosConfigurations = { - laptop = nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - ./hosts/laptop.nix - ./modules/common.nix - ./modules/hyprland.nix - ./modules/networking.nix - ./modules/user.nix - ]; - }; - desktop = nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - ./hosts/desktop.nix - ./modules/common.nix - ./modules/hyprland.nix - ./modules/networking.nix - ./modules/user.nix - ]; - }; - vm = nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - ./hosts/vm.nix - ./modules/common.nix - ./modules/hyprland.nix - ./modules/networking.nix - ./modules/user.nix - ]; +{ + description = "NixOS Configuration for Laptop, Desktop and VM"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + home-manager.url = "github:nix-community/home-manager"; + home-manager.inputs.nixpkgs.follows = "nixpkgs"; + }; + + outputs = { nixpkgs, home-manager, ... }: + let + system = "x86_64-linux"; + in { + nixosConfigurations = { + laptop = nixpkgs.lib.nixosSystem { + inherit system; + modules = [ + ./hosts/laptop.nix + ./modules/common.nix + ./modules/hyprland.nix + ./modules/networking.nix + ./modules/user.nix + ]; + }; + desktop = nixpkgs.lib.nixosSystem { + inherit system; + modules = [ + ./hosts/desktop.nix + ./modules/common.nix + ./modules/hyprland.nix + ./modules/networking.nix + ./modules/user.nix + ]; + }; + vm = nixpkgs.lib.nixosSystem { + inherit system; + modules = [ + ./hosts/vm.nix + ./modules/common.nix + ./modules/hyprland.nix + ./modules/networking.nix + ./modules/user.nix + ]; + }; }; }; - }; +}