1
0
Fork 0
mirror of https://git.sr.ht/~azikx/karbur synced 2024-10-30 07:26:20 +00:00
karbur/flake.nix

51 lines
1.5 KiB
Nix
Raw Normal View History

2024-10-18 07:16:37 +00:00
{
2024-10-19 11:45:18 +00:00
outputs = { nixpkgs, home-manager, ... }@inputs: {
nixosConfigurations.karbur = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [ ./host ];
};
2024-10-18 07:16:37 +00:00
2024-10-19 11:45:18 +00:00
homeConfigurations.dragora = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages."x86_64-linux";
extraSpecialArgs = { inherit inputs; };
modules = [ ./home ];
2024-10-18 07:16:37 +00:00
};
2024-10-19 11:45:18 +00:00
};
2024-10-18 07:16:37 +00:00
inputs = {
# REPOSITORIES NIXPKGS
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05";
# ONE LINE SOFTWARE
2024-10-22 09:37:36 +00:00
ayugram-desktop.url =
"github:ayugram-port/ayugram-desktop/release?submodules=1";
2024-10-18 07:16:37 +00:00
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
2024-10-21 10:33:43 +00:00
zen-browser.url = "github:0xc000022070/zen-browser-flake";
2024-10-18 07:16:37 +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";
};
hyprfocus = {
url = "github:pyt0xic/hyprfocus";
inputs.hyprland.follows = "hyprland";
};
walls = {
url = "git+https://git.pub.solar/azikx/wallpapers?ref=main";
flake = false;
};
};
}