2024-10-12 09:43:57 +00:00
|
|
|
{
|
2024-10-27 13:16:12 +00:00
|
|
|
outputs = { flake-parts, nixpkgs, home-manager, ... }@inputs:
|
2024-10-15 13:18:01 +00:00
|
|
|
let
|
2024-10-27 13:16:12 +00:00
|
|
|
nx = nixpkgs.lib.nixosSystem;
|
|
|
|
hm = home-manager.lib.homeManagerConfiguration;
|
|
|
|
in flake-parts.lib.mkFlake { inherit inputs; } {
|
|
|
|
systems = [ "x86_64-linux" ];
|
|
|
|
flake = {
|
|
|
|
# HOST CONFIGURATION
|
|
|
|
nixosConfigurations = {
|
|
|
|
wysvort = nx {
|
|
|
|
specialArgs = { inherit inputs; };
|
|
|
|
modules = [ ./host ];
|
|
|
|
};
|
2024-10-15 13:18:01 +00:00
|
|
|
};
|
|
|
|
|
2024-10-27 13:16:12 +00:00
|
|
|
# HOME CONFIGURATION
|
|
|
|
homeConfigurations = {
|
|
|
|
megamozg = hm {
|
|
|
|
pkgs = nixpkgs.legacyPackages."x86_64-linux";
|
|
|
|
extraSpecialArgs = { inherit inputs; };
|
|
|
|
modules = [ ./home ];
|
|
|
|
};
|
2024-10-15 13:18:01 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
# REPOSITORIES NIXPKGS
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05";
|
|
|
|
nur.url = "github:nix-community/NUR";
|
|
|
|
|
|
|
|
# ONE LINE SOFTWARE
|
|
|
|
ayugram-desktop.url = "github:kaeeraa/ayugram-desktop/release?submodules=1";
|
|
|
|
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
|
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
2024-10-26 13:44:55 +00:00
|
|
|
zen-browser.url = "github:0xc000022070/zen-browser-flake";
|
2024-10-27 13:16:12 +00:00
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
|
|
nix-gaming.url = "github:fufexan/nix-gaming";
|
2024-10-15 13:18:01 +00:00
|
|
|
stylix.url = "github:danth/stylix";
|
|
|
|
yazi.url = "github:sxyazi/yazi";
|
|
|
|
|
|
|
|
# TWO LINE SOFTWARE
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
spicetify-nix = {
|
|
|
|
url = "github:Gerg-L/spicetify-nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
firefox-addons = {
|
|
|
|
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-10-26 13:44:55 +00:00
|
|
|
nypkgs = {
|
|
|
|
url = "github:yunfachi/nypkgs";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-10-12 09:43:57 +00:00
|
|
|
auto-cpufreq = {
|
|
|
|
url = "github:AdnanHodzic/auto-cpufreq";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2024-10-15 13:18:01 +00:00
|
|
|
# HYPRlAND
|
|
|
|
hyprland-plugins = {
|
|
|
|
url = "github:hyprwm/hyprland-plugins";
|
|
|
|
inputs.hyprland.follows = "hyprland";
|
|
|
|
};
|
|
|
|
hyprfocus = {
|
|
|
|
url = "github:pyt0xic/hyprfocus";
|
|
|
|
inputs.hyprland.follows = "hyprland";
|
|
|
|
};
|
2024-10-20 05:53:56 +00:00
|
|
|
walls = {
|
|
|
|
url = "git+https://git.pub.solar/azikx/wallpapers?ref=main";
|
2024-10-15 13:18:01 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
};
|
2024-10-12 09:43:57 +00:00
|
|
|
}
|