feat: create muOS (laptop) config

This commit is contained in:
Noa Aarts 2024-08-30 18:26:19 +02:00
parent 062f0968d9
commit 79b53eb0df
Signed by: noa
GPG key ID: 1850932741EFF672
5 changed files with 654 additions and 0 deletions

View file

@ -44,6 +44,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
hardware = {
url = "github:NixOS/nixos-hardware/master";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nix-colors, automapaper, disko, hyprland, lazy, ... }@inputs:
@ -72,6 +77,18 @@
inputs.home-manager.nixosModules.default
];
};
muOS = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
inherit nix-colors;
inherit automapaper;
};
modules = [
disko.nixosModules.disko
inputs.home-manager.nixosModules.default
inputs.hardware.nixosModules.framework-11th-gen-intel
];
};
};
nixosModules = {
automapaper = ./modules/automapaper;