Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- description = "Salvo flake";
- inputs = {
- nixpkgs.url = "nixpkgs/nixos-24.05";
- home-manager.url = "github:nix-community/home-manager/release-24.05";
- home-manager.inputs.nixpkgs.follows = "nixpkgs";
- hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
- hyprland-plugins = {
- url = "github:hyprwm/hyprland-plugins";
- inputs.hyprland.follows = "hyprland";
- };
- };
- outputs = {self, nixpkgs, home-manager, ... }:
- let
- lib = nixpkgs.lib;
- system = "x86_64-linux";
- pkgs = nixpkgs.legacyPackages.${system};
- in {
- nixosConfigurations = {
- nixos = lib.nixosSystem {
- inherit system;
- modules = [./configuration.nix];
- };
- };
- homeConfigurations = {
- salvo = home-manager.lib.homeManagerConfiguration {
- inherit pkgs;
- modules = [./home.nix];
- };
- };
- };
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement