{ description = "Hakase Configuration"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; elephant = { url = "github:abenz1267/elephant"; inputs.nixpkgs.follows = "nixpkgs"; }; chaotic = { url = "github:chaotic-cx/nyx/nyxpkgs-unstable"; inputs.nixpkgs.follows = "nixpkgs"; }; textfox = { url = "github:adriankarlen/textfox"; inputs.nixpkgs.follows = "nixpkgs"; }; nur = { url = "github:nix-community/NUR"; inputs.nixpkgs.follows = "nixpkgs"; }; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; hyprland = { url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; inputs.nixpkgs.follows = "nixpkgs"; }; hyprsplit = { url = "github:shezdy/hyprsplit"; inputs.hyprland.follows = "hyprland"; }; hyprland-plugins = { url = "github:hyprwm/hyprland-plugins"; inputs.hyprland.follows = "hyprland"; }; nixovim = { # FIXME: treesitter does not install automatically (disabled due to read-only problems) url = "git+https://git.sakamoto.dev/kenji/nixovim.git"; inputs.nixpkgs.follows = "nixpkgs"; }; sops-nix = { url = "github:Mic92/sops-nix"; inputs.nixpkgs.follows = "nixpkgs"; }; walker = { url = "github:abenz1267/walker"; inputs.nixpkgs.follows = "nixpkgs"; inputs.elephant.follows = "elephant"; }; vicinae = { url = "github:vicinaehq/vicinae"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, home-manager, nixovim, chaotic, sops-nix, textfox, ... } @ inputs: let config = import ./config.nix; system = "x86_64-linux"; args = { inherit inputs system; } // config; in { nixosConfigurations = { hakase = nixpkgs.lib.nixosSystem { specialArgs = args; modules = [ home-manager.nixosModules.home-manager sops-nix.nixosModules.sops chaotic.nixosModules.default ./hosts/hakase/configuration.nix ]; }; }; }; }