2023-11-05 04:53:31 -03:00
|
|
|
{
|
|
|
|
description = "NixOS System Flake";
|
|
|
|
|
|
|
|
inputs = {
|
2024-04-26 07:50:25 -03:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2023-11-05 04:53:31 -03:00
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-07-16 00:43:51 -03:00
|
|
|
|
2024-07-17 11:35:44 -03:00
|
|
|
spicetify-nix = {
|
|
|
|
url = "github:Gerg-L/spicetify-nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-07-20 08:41:24 -03:00
|
|
|
|
|
|
|
catppuccin.url = "github:catppuccin/nix";
|
2023-11-05 04:53:31 -03:00
|
|
|
};
|
|
|
|
|
2024-06-24 03:20:30 -03:00
|
|
|
outputs =
|
2024-07-20 08:41:24 -03:00
|
|
|
{
|
|
|
|
home-manager,
|
|
|
|
nixpkgs,
|
|
|
|
catppuccin,
|
|
|
|
...
|
|
|
|
}@inputs:
|
2024-06-24 03:20:30 -03:00
|
|
|
let
|
|
|
|
system = "x86_64-linux";
|
2024-07-11 04:53:41 -03:00
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
2024-06-24 03:20:30 -03:00
|
|
|
in
|
|
|
|
{
|
2024-07-20 08:41:24 -03:00
|
|
|
nixosConfigurations."wizdesk" =
|
2024-04-11 20:02:59 -03:00
|
|
|
let
|
|
|
|
specialArgs = inputs;
|
2024-07-20 08:41:24 -03:00
|
|
|
modules = [
|
|
|
|
./nixos.nix
|
|
|
|
catppuccin.nixosModules.catppuccin
|
|
|
|
];
|
2024-04-11 20:02:59 -03:00
|
|
|
in
|
|
|
|
nixpkgs.lib.nixosSystem { inherit system specialArgs modules; };
|
|
|
|
|
2024-07-11 04:53:41 -03:00
|
|
|
homeConfigurations.wizardlink = home-manager.lib.homeManagerConfiguration {
|
|
|
|
inherit pkgs;
|
|
|
|
|
|
|
|
extraSpecialArgs = inputs;
|
2024-07-20 08:41:24 -03:00
|
|
|
modules = [
|
|
|
|
./home-manager.nix
|
|
|
|
catppuccin.homeManagerModules.catppuccin
|
|
|
|
];
|
2024-07-11 04:53:41 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
formatter."${system}" = pkgs.nixfmt-rfc-style;
|
2024-01-16 11:33:01 -03:00
|
|
|
};
|
2023-11-05 04:53:31 -03:00
|
|
|
}
|