{ description = "azikx snowflake palace"; outputs = { nixpkgs, home-manager, flake-parts, ... }@inputs: { nixosConfigurations.karbur = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs; }; modules = [ ./host ]; }; homeConfigurations.dragora = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages."x86_64-linux"; extraSpecialArgs = { inherit inputs; }; modules = [ ./home ]; }; }; inputs = { # REPOSITORIES NIXPKGS nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05"; # ONE LINE SOFTWARE ayugram-desktop.url = "github:ayugram-port/ayugram-desktop/release?submodules=1"; hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; zen-browser.url = "github:0xc000022070/zen-browser-flake"; nix-gaming.url = "github:fufexan/nix-gaming"; stylix.url = "github:danth/stylix"; yazi.url = "github:sxyazi/yazi"; # TWO LINE SOFTWARE flake-parts = { url = "github:hercules-ci/flake-parts"; inputs.nixpkgs-lib.follows = "nixpkgs"; }; 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"; }; hyprfocus = { url = "github:pyt0xic/hyprfocus"; inputs.hyprland.follows = "hyprland"; }; # WALLPAPERS walls = { url = "git+https://git.pub.solar/azikx/wallpapers?ref=main"; flake = false; }; }; }