mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 17:16:35 +01:00
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
description = "jopejoe1 NixOS configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
|
|
nur.url = github:nix-community/NUR;
|
|
home-manager= {
|
|
url = github:nix-community/home-manager;
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
prismlauncher = {
|
|
url = "github:PrismLauncher/PrismLauncher";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = inputs@{
|
|
self,
|
|
nixpkgs,
|
|
home-manager,
|
|
prismlauncher,
|
|
nur,
|
|
...
|
|
}: {
|
|
nixosConfigurations.kami = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = inputs;
|
|
modules = [
|
|
./systems/kami
|
|
./modules/audio
|
|
./modules/bluetooth
|
|
./modules/local
|
|
./modules/nix
|
|
./modules/plasma
|
|
./modules/printing
|
|
./modules/ssh
|
|
./modules/steam
|
|
./modules/users/jopejoe1
|
|
{
|
|
nixpkgs = {
|
|
config.allowUnfree = true;
|
|
overlays = [ prismlauncher.overlays.default nur.overlay ];
|
|
};
|
|
system.stateVersion = "23.05";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|