hosts: rearrange modules a bit

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2024-05-27 19:33:11 +05:30
parent ed71d6459c
commit 856d49ee10
19 changed files with 299 additions and 381 deletions

View File

@@ -3,7 +3,7 @@
inputs = {
nixpkgs.url = github:nixos/nixpkgs/nixpkgs-unstable;
stable.url = github:nixos/nixpkgs/release-22.11;
stable.url = github:nixos/nixpkgs/release-23.11;
flake-parts.url = github:hercules-ci/flake-parts;
home-manager = {
url = github:nix-community/home-manager;
@@ -13,10 +13,6 @@
url = gitlab:simple-nixos-mailserver/nixos-mailserver;
inputs.nixpkgs.follows = "nixpkgs";
};
rust-overlay = {
url = github:oxalica/rust-overlay;
inputs.nixpkgs.follows = "nixpkgs";
};
filehost = {
url = github:natto1784/simpler-filehost;
# inputs.nixpkgs.follows = "nixpkgs";
@@ -32,8 +28,10 @@
# inputs.nixpkgs.url = github:nixos/nixpkgs?rev=fad51abd42ca17a60fc1d4cb9382e2d79ae31836;
};
hyprland = {
url = github:hyprwm/Hyprland;
#inputs.nixpkgs.follows = "nixpkgs";
type = "git";
url = "https://github.com/hyprwm/Hyprland";
submodules = true;
# inputs.nixpkgs.follows = "nixpkgs";
};
hyprland-contrib = {
url = github:hyprwm/contrib;
@@ -56,27 +54,14 @@
./lib
];
perSystem = { system, ... }:
let
pkgs = import inputs.nixpkgs {
inherit system;
config = {
allowUnfree = true;
allowBroken = true;
allowInsecure = true;
};
overlays = [
inputs.nvim-overlay.overlay
inputs.emacs-overlay.overlay
inputs.rust-overlay.overlays.default
perSystem = { system, pkgs, ... }:
{
formatter = pkgs.nixpkgs-fmt;
devShells.default = with pkgs; mkShell {
packages = [
nixd
];
};
in
{
legacyPackages = pkgs;
_module.args.pkgs = pkgs;
formatter = pkgs.nixpkgs-fmt;
};
};
}