47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{
|
|
description = "NixOS System Flake";
|
|
|
|
inputs = {
|
|
# FIXME: Use nixos-unstable when https://nixpk.gs/pr-tracker.html?pr=335559 lands
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
spicetify-nix = {
|
|
url = "github:Gerg-L/spicetify-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
|
|
|
|
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
|
|
};
|
|
|
|
outputs =
|
|
{ home-manager, nixpkgs, ... }@inputs:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
nixosConfigurations.wizdesk =
|
|
let
|
|
specialArgs = inputs;
|
|
modules = [ ./nixos.nix ];
|
|
in
|
|
nixpkgs.lib.nixosSystem { inherit system specialArgs modules; };
|
|
|
|
homeConfigurations.wizardlink = home-manager.lib.homeManagerConfiguration {
|
|
inherit pkgs;
|
|
|
|
extraSpecialArgs = inputs;
|
|
modules = [ ./home-manager.nix ];
|
|
};
|
|
|
|
formatter."${system}" = pkgs.nixfmt-rfc-style;
|
|
};
|
|
}
|