PortableNixOS/flake.nix
Johannes Hendrik Gerard van der Weide 5979630e28 Initial commit :3
2024-10-03 14:30:17 +02:00

51 lines
1.1 KiB
Nix

{
description = "This flake is for hertogs laptop and the other thing";
inputs = {
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
nixpkgs.url = "nixpkgs/nixos-unstable";
lix-module = {
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.0.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixos-hardware,
nixpkgs,
lix-module,
...
}@inputs:
let
system = "x86_64-linux";
currentSystem = system;
pkgs = import nixpkgs {
inherit system;
};
lib = nixpkgs.lib;
in {
# Laptop NixOS configuration
nixosConfigurations = {
laptop = lib.nixosSystem {
inherit system;
modules = [
nixos-hardware.nixosModules.framework-11th-gen-intel
lix-module.nixosModules.default
./users.nix
./boot.nix
./desktop.nix
./programs.nix
./packages.nix
./locale.nix
./hardware.nix
./hardware-configuration.nix
./settings.nix
];
};
};
};
}