164 lines
5.8 KiB
Nix
164 lines
5.8 KiB
Nix
# This flake was initially generated by fh, the CLI for FlakeHub (version 0.1.9)
|
|
{
|
|
# A helpful description of your flake
|
|
description = "My NixOS configuration";
|
|
|
|
# Flake inputs
|
|
inputs.stylix.url = "github:jalil-salame/stylix/fallback-fonts-v2";
|
|
inputs.stylix.inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.stylix.inputs.home-manager.follows = "home-manager";
|
|
|
|
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
|
|
|
|
inputs.jpassmenu.url = "github:jalil-salame/jpassmenu";
|
|
inputs.jpassmenu.inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.jpassmenu.inputs.flake-schemas.follows = "flake-schemas";
|
|
|
|
inputs.audiomenu.url = "github:jalil-salame/audiomenu";
|
|
inputs.audiomenu.inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.audiomenu.inputs.flake-schemas.follows = "flake-schemas";
|
|
|
|
inputs.nvim-config.url = "github:jalil-salame/nvim-config";
|
|
inputs.nvim-config.inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.nvim-config.inputs.home-manager.follows = "home-manager";
|
|
inputs.nvim-config.inputs.flake-schemas.follows = "flake-schemas";
|
|
|
|
# WARN: Flakehub is outdated (39 days out of date)
|
|
# inputs.home-manager.url = "https://flakehub.com/f/nix-community/home-manager/0.1.*.tar.gz";
|
|
inputs.home-manager.url = "github:nix-community/home-manager";
|
|
inputs.home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/*.tar.gz";
|
|
|
|
inputs.nixos-hardware.url = "https://flakehub.com/f/NixOS/nixos-hardware/0.1.*.tar.gz";
|
|
|
|
inputs.pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
|
|
inputs.pre-commit-hooks.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
# Flake outputs that other flakes can use
|
|
outputs =
|
|
{ self
|
|
, flake-schemas
|
|
, nixpkgs
|
|
, stylix
|
|
, home-manager
|
|
, nixos-hardware
|
|
, pre-commit-hooks
|
|
, jpassmenu
|
|
, audiomenu
|
|
, nvim-config
|
|
}:
|
|
let
|
|
inherit (nixpkgs) lib;
|
|
# Helpers for producing system-specific outputs
|
|
supportedSystems = [ "x86_64-linux" "aarch64-linux" ];
|
|
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
|
|
inherit system;
|
|
pkgs = import nixpkgs { inherit system; };
|
|
});
|
|
# Module documentation
|
|
doc = forEachSupportedSystem ({ pkgs, system }: import ./docs { inherit pkgs lib; });
|
|
in
|
|
{
|
|
# Schemas tell Nix about the structure of your flake's outputs
|
|
inherit (flake-schemas) schemas;
|
|
|
|
checks = forEachSupportedSystem ({ pkgs, system }: {
|
|
pre-commit-check = pre-commit-hooks.lib.${system}.run {
|
|
src = builtins.path { path = ./.; name = "configuration.nix"; };
|
|
hooks.nixpkgs-fmt.enable = true;
|
|
};
|
|
});
|
|
|
|
packages = doc;
|
|
|
|
# Provide necessary overlays
|
|
overlays = {
|
|
nixneovim = nvim-config.overlays.nixneovim;
|
|
neovim-nightly = nvim-config.overlays.neovim-nightly;
|
|
jpassmenu = jpassmenu.overlays.default;
|
|
audiomenu = audiomenu.overlays.default;
|
|
};
|
|
|
|
# Nix files formatter (run `nix fmt`)
|
|
formatter = forEachSupportedSystem ({ pkgs, ... }: pkgs.nixpkgs-fmt);
|
|
|
|
# Example vm configuration
|
|
nixosConfigurations.vm =
|
|
let
|
|
system = "x86_64-linux";
|
|
overlays = builtins.attrValues self.overlays;
|
|
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
|
"steam-original"
|
|
];
|
|
# config.allowUnfree = true;
|
|
pkgs = import nixpkgs { inherit system overlays config; };
|
|
in
|
|
lib.nixosSystem
|
|
{
|
|
inherit system pkgs;
|
|
modules = [
|
|
self.nixosModules.vm # import vm module
|
|
{
|
|
time.timeZone = "Europe/Berlin";
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
users.users.jdoe.password = "example";
|
|
users.users.jdoe.isNormalUser = true;
|
|
users.users.jdoe.extraGroups = [ "wheel" "video" "networkmanager" ];
|
|
|
|
home-manager.users.jdoe = {
|
|
home.username = "jdoe";
|
|
home.homeDirectory = "/home/jdoe";
|
|
|
|
jhome.enable = true;
|
|
jhome.gui.enable = true;
|
|
jhome.dev.rust.enable = true;
|
|
};
|
|
|
|
nix.registry.nixpkgs.flake = nixpkgs;
|
|
|
|
jconfig.enable = true;
|
|
jconfig.gui.enable = true;
|
|
}
|
|
];
|
|
};
|
|
|
|
|
|
nixosModules =
|
|
let
|
|
overlays = builtins.attrValues self.overlays;
|
|
homeManagerModuleSandalone = import ./home { inherit overlays nvim-config stylix; };
|
|
homeManagerModuleNixOS = import ./home { inherit overlays nvim-config; };
|
|
nixosModule = {
|
|
imports = [
|
|
(import ./nixos { inherit stylix; })
|
|
home-manager.nixosModules.home-manager
|
|
];
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.sharedModules = [ homeManagerModuleNixOS ];
|
|
|
|
# Pin nixpkgs
|
|
nix.registry.nixpkgs.flake = nixpkgs;
|
|
};
|
|
|
|
machines = [ "capricorn" "gemini" "libra" "vm" ];
|
|
mkMachine = hostname: {
|
|
imports = [
|
|
nixosModule
|
|
(import (./machines + "/${hostname}") { inherit nixos-hardware; })
|
|
];
|
|
home-manager.sharedModules = [{ jhome.hostName = hostname; }];
|
|
};
|
|
machineModules = lib.genAttrs machines mkMachine;
|
|
in
|
|
{
|
|
default = nixosModule;
|
|
inherit nixosModule homeManagerModuleNixOS homeManagerModuleSandalone;
|
|
} // machineModules;
|
|
|
|
devShells = forEachSupportedSystem ({ pkgs, system }: { default = pkgs.mkShell { inherit (self.checks.${system}.pre-commit-check) shellHook; }; });
|
|
};
|
|
}
|