Jafner.net/nix/flake.nix
Joey Hafner 5b26aeb80b
Some checks failed
SSH and echo to file / ssh (push) Failing after 3s
Update from joey@joey-laptop: Add Discord, properly configure fzf-git-sh
2024-09-14 16:51:41 -07:00

56 lines
1.6 KiB
Nix

{
description = "Joey's Flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
hyprland.url = "github:hyprwm/Hyprland";
hyprland.inputs.nixpkgs.follows = "nixpkgs-unstable";
home-manager.url = "github:nix-community/home-manager/release-24.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs-stable";
nix-flatpak.url = "github:gmodena/nix-flatpak";
};
outputs = {
self,
nixpkgs,
nixpkgs-stable,
nixpkgs-unstable,
home-manager,
hyprland,
nix-flatpak,
...
}@inputs:
let
lib = nixpkgs.lib;
system = "x86_64-linux";
pkgs = import inputs.nixpkgs {
system = system;
config = { allowUnfree = true; };
};
pkgs-stable = nixpkgs-stable.legacyPackages.${system};
pkgs-unstable = nixpkgs-unstable.legacyPackages.${system};
in {
nixosConfigurations = {
joey-laptop = lib.nixosSystem {
specialArgs = { inherit inputs; };
system = system;
modules = [
./nixos/configuration.nix
inputs.home-manager.nixosModules.default
inputs.hyprland.nixosModules.default
nix-flatpak.nixosModules.nix-flatpak
];
};
};
homeConfigurations = {
joey = home-manager.lib.homeManagerConfiguration {
pkgs = pkgs;
extraSpecialArgs = {
pkgs-unstable = pkgs-unstable;
};
modules = [ ./home-manager/home.nix ];
};
};
};
}