first commit
This commit is contained in:
commit
58a3f28118
72 changed files with 3082 additions and 0 deletions
34
flake.nix
Normal file
34
flake.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
description = "Fahim's nixos configuration";
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
nur.url = "github:nix-community/NUR";
|
||||
hypr-contrib.url = "github:hyprwm/contrib";
|
||||
hyprpicker.url = "github:hyprwm/hyprpicker";
|
||||
alejandra.url = "github:kamadorueda/alejandra/3.0.0";
|
||||
nix-gaming.url = "github:fufexan/nix-gaming";
|
||||
hyprland = {
|
||||
url = "github:hyprwm/Hyprland";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ nixpkgs
|
||||
, self
|
||||
, ...
|
||||
} @ inputs:
|
||||
let
|
||||
selfPkgs = import ./pkgs;
|
||||
in
|
||||
{
|
||||
overlays.default = selfPkgs.overlay;
|
||||
nixosConfigurations = import ./modules/core/default.nix {
|
||||
inherit self nixpkgs inputs;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue