2024-02-29 22:20:26 -05:00
|
|
|
{
|
|
|
|
|
description = "Nixos config flake";
|
|
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
hyprland = {
|
|
|
|
|
url = "github:hyprwm/Hyprland/";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
hyprland-plugins = {
|
|
|
|
|
url = "github:hyprwm/hyprland-plugins";
|
|
|
|
|
inputs.hyprland.follows = "hyprland";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
hyprcontrib = {
|
|
|
|
|
url = "github:hyprwm/contrib";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
2024-03-01 14:18:58 -05:00
|
|
|
|
|
|
|
|
kb-gui = {
|
|
|
|
|
url = "github:zackartz/kb-gui";
|
|
|
|
|
};
|
2024-03-19 16:03:41 -04:00
|
|
|
|
2024-03-19 16:48:26 -04:00
|
|
|
waybar = {
|
|
|
|
|
url = "github:Alexays/Waybar";
|
|
|
|
|
};
|
2024-03-20 13:45:01 -04:00
|
|
|
|
|
|
|
|
neovim-nightly-overlay = {
|
|
|
|
|
url = "github:nix-community/neovim-nightly-overlay";
|
|
|
|
|
};
|
2024-03-24 18:13:24 -04:00
|
|
|
|
|
|
|
|
rio-term = {
|
2024-03-24 20:45:43 -04:00
|
|
|
url = "github:zackartz/rio";
|
2024-03-24 18:13:24 -04:00
|
|
|
};
|
2024-02-29 22:20:26 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
outputs = {
|
|
|
|
|
self,
|
|
|
|
|
nixpkgs,
|
|
|
|
|
...
|
|
|
|
|
} @ inputs: let
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
2024-03-19 16:03:41 -04:00
|
|
|
overlays = [
|
|
|
|
|
inputs.neovim-nightly-overlay.overlay
|
|
|
|
|
];
|
2024-02-29 22:20:26 -05:00
|
|
|
in {
|
|
|
|
|
nixosConfigurations.earth = nixpkgs.lib.nixosSystem {
|
|
|
|
|
specialArgs = {inherit inputs;};
|
|
|
|
|
modules = [
|
|
|
|
|
./hosts/earth/configuration.nix
|
|
|
|
|
inputs.home-manager.nixosModules.default
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|