{ description = "Home Manager configuration of phundrak"; inputs = { # Specify the source of Home Manager and Nixpkgs. nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; devenv.url = "github:cachix/devenv"; sops-nix = { url = "github:Mic92/sops-nix"; inputs.nixpkgs.follows = "nixpkgs"; }; zen-browser = { url = "github:youwen5/zen-browser-flake"; inputs.nixpkgs.follows = "nixpkgs"; }; }; nixConfig = { extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="; extra-substituters = "https://devenv.cachix.org"; }; outputs = { self, nixpkgs, home-manager, devenv, ... } @ inputs: let inherit (self) outputs; system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; in { formatter.${system} = pkgs.alejandra; packages.${system} = { devenv-up = self.devShells.${system}.default.config.procfileScript; devenv-test = self.devShells.${system}.default.config.test; }; devShells.${system}.default = devenv.lib.mkShell { inherit inputs pkgs; modules = [ ( {pkgs, ...}: { packages = [pkgs.nh]; git-hooks.hooks = { alejandra.enable = true; commitizen.enable = true; detect-private-keys.enable = true; end-of-file-fixer.enable = true; deadnix.enable = true; ripsecrets.enable = true; statix.enable = true; }; } ) ]; }; homeConfigurations = { "phundrak@marpa" = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages.x86_64-linux; extraSpecialArgs = { inherit inputs outputs; home-conf = "fullHome"; }; modules = [ ./users/phundrak/marpa.nix inputs.sops-nix.homeManagerModules.sops ]; }; "phundrak@gampo" = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages.x86_64-linux; extraSpecialArgs = { inherit inputs outputs; home-conf = "fullHome"; }; modules = [ ./users/phundrak/gampo.nix inputs.sops-nix.homeManagerModules.sops ]; }; "phundrak@tilo" = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages.x86_64-linux; extraSpecialArgs = { inherit inputs outputs; home-conf = "minimal"; }; modules = [ ./users/phundrak/tilo.nix inputs.sops-nix.homeManagerModules.sops ]; }; }; nixosConfigurations = { gampo = nixpkgs.lib.nixosSystem { specialArgs = {inherit inputs outputs;}; modules = [ ./hosts/gampo/configuration.nix inputs.sops-nix.nixosModules.sops ]; }; marpa = nixpkgs.lib.nixosSystem { specialArgs = {inherit inputs outputs;}; modules = [ ./hosts/marpa/configuration.nix inputs.sops-nix.nixosModules.sops ]; }; tilo = nixpkgs.lib.nixosSystem { specialArgs = {inherit inputs outputs;}; modules = [ ./hosts/tilo/configuration.nix inputs.sops-nix.nixosModules.sops ]; }; }; }; }