fc2ca20f6d
- Group module settings into config files - no more root configuration outside of flake - added readme for future me
26 lines
549 B
Nix
26 lines
549 B
Nix
{
|
|
description = "Quins NixOS flake!";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-23.05";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager, ... }@inputs: {
|
|
nixosConfigurations.qmoran-laptop = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./nix/qlhc.nix
|
|
./nix/common.nix
|
|
./nix/user-quin.nix
|
|
./nix/gui1.nix
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|