2024-01-14 17:33:16 +01:00
|
|
|
# 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
|
2024-01-19 17:09:01 +01:00
|
|
|
inputs.stylix.url = "github:jalil-salame/stylix/fallback-fonts-v2";
|
2024-01-14 17:33:16 +01:00
|
|
|
inputs.stylix.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.stylix.inputs.home-manager.follows = "home-manager";
|
2024-01-15 12:42:01 +01:00
|
|
|
|
2024-02-16 20:10:20 +01:00
|
|
|
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
|
2024-01-15 12:42:01 +01:00
|
|
|
|
2024-01-21 20:56:00 +01:00
|
|
|
inputs.jpassmenu.url = "github:jalil-salame/jpassmenu";
|
|
|
|
inputs.jpassmenu.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
|
|
|
inputs.audiomenu.url = "github:jalil-salame/audiomenu";
|
|
|
|
inputs.audiomenu.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
2024-03-02 20:48:34 +01:00
|
|
|
inputs.nixvim.url = "github:nix-community/nixvim";
|
|
|
|
inputs.nixvim.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.nixvim.inputs.home-manager.follows = "home-manager";
|
|
|
|
inputs.nixvim.inputs.pre-commit-hooks.follows = "pre-commit-hooks";
|
2024-01-15 12:57:44 +01:00
|
|
|
|
2024-01-22 10:45:29 +01:00
|
|
|
# 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";
|
2024-01-14 17:33:16 +01:00
|
|
|
inputs.home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
2024-01-15 12:42:01 +01:00
|
|
|
|
2024-02-16 20:10:20 +01:00
|
|
|
inputs.nixos-hardware.url = "github:NixOS/nixos-hardware";
|
2024-01-14 17:33:16 +01:00
|
|
|
|
2024-02-16 20:10:20 +01:00
|
|
|
inputs.neovim-nightly.url = "github:nix-community/neovim-nightly-overlay";
|
|
|
|
inputs.neovim-nightly.inputs.nixpkgs.follows = "nixpkgs";
|
2024-01-15 12:57:59 +01:00
|
|
|
|
2024-01-15 23:59:15 +01:00
|
|
|
inputs.pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
|
|
|
|
inputs.pre-commit-hooks.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
2024-01-14 17:33:16 +01:00
|
|
|
# Flake outputs that other flakes can use
|
2024-01-15 23:59:15 +01:00
|
|
|
outputs =
|
2024-04-05 11:55:35 +02:00
|
|
|
{
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
stylix,
|
|
|
|
home-manager,
|
|
|
|
nixos-hardware,
|
|
|
|
pre-commit-hooks,
|
|
|
|
jpassmenu,
|
|
|
|
audiomenu,
|
|
|
|
nixvim,
|
|
|
|
neovim-nightly,
|
2024-01-15 23:59:15 +01:00
|
|
|
}:
|
2024-01-14 17:33:16 +01:00
|
|
|
let
|
2024-01-14 18:58:08 +01:00
|
|
|
inherit (nixpkgs) lib;
|
2024-01-14 17:33:16 +01:00
|
|
|
# Helpers for producing system-specific outputs
|
2024-04-05 11:55:35 +02:00
|
|
|
supportedSystems = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
];
|
|
|
|
forEachSupportedSystem =
|
|
|
|
f:
|
|
|
|
nixpkgs.lib.genAttrs supportedSystems (
|
|
|
|
system:
|
|
|
|
f {
|
|
|
|
inherit system;
|
|
|
|
pkgs = import nixpkgs { inherit system; };
|
|
|
|
}
|
|
|
|
);
|
2024-03-03 15:20:42 +01:00
|
|
|
overlays = builtins.attrValues self.overlays;
|
2024-01-14 17:33:16 +01:00
|
|
|
in
|
|
|
|
{
|
2024-04-05 11:55:35 +02:00
|
|
|
checks = forEachSupportedSystem (
|
|
|
|
{ pkgs, system }:
|
|
|
|
{
|
|
|
|
nvim = nixvim.lib.${system}.check.mkTestDerivationFromNixvimModule {
|
|
|
|
pkgs = import nixpkgs { inherit system overlays; };
|
|
|
|
module = ./nvim/nixvim.nix;
|
|
|
|
};
|
|
|
|
pre-commit-check = pre-commit-hooks.lib.${system}.run {
|
|
|
|
src = builtins.path {
|
|
|
|
path = ./.;
|
|
|
|
name = "configuration.nix";
|
|
|
|
};
|
|
|
|
hooks.typos.enable = true;
|
|
|
|
hooks.nixfmt.enable = true;
|
|
|
|
hooks.nixfmt.package = pkgs.nixfmt-rfc-style;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
packages = forEachSupportedSystem (
|
|
|
|
{ pkgs, system }:
|
|
|
|
{
|
|
|
|
inherit (import ./docs { inherit pkgs lib; })
|
|
|
|
docs
|
|
|
|
nixos-markdown
|
|
|
|
nvim-markdown
|
|
|
|
home-markdown
|
|
|
|
;
|
|
|
|
# Nvim standalone module
|
|
|
|
nvim = nixvim.legacyPackages.${system}.makeNixvimWithModule {
|
|
|
|
pkgs = import nixpkgs { inherit system overlays; };
|
|
|
|
module = ./nvim/nixvim.nix;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
2024-01-14 18:58:08 +01:00
|
|
|
|
2024-01-21 20:56:00 +01:00
|
|
|
# Provide necessary overlays
|
|
|
|
overlays = {
|
2024-03-02 20:48:34 +01:00
|
|
|
nixvim = nixvim.overlays.default;
|
2024-02-16 20:10:20 +01:00
|
|
|
neovim-nightly = neovim-nightly.overlays.default;
|
2024-01-21 20:56:00 +01:00
|
|
|
jpassmenu = jpassmenu.overlays.default;
|
|
|
|
audiomenu = audiomenu.overlays.default;
|
2024-03-20 08:38:41 +01:00
|
|
|
"waybar-sway-patch" = final: prev: {
|
2024-04-05 11:55:35 +02:00
|
|
|
waybar = prev.waybar.overrideAttrs (
|
|
|
|
old:
|
2024-03-29 13:52:56 +01:00
|
|
|
let
|
2024-03-22 22:53:41 +01:00
|
|
|
# Fixes https://github.com/Alexays/Waybar/issues/3009
|
2024-03-29 13:52:56 +01:00
|
|
|
patch = final.fetchpatch {
|
2024-03-20 08:38:41 +01:00
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/Alexays/Waybar/pull/3037.patch";
|
|
|
|
hash = "sha256-u87t6zzslk1mzSfi4HQ6zDPFr7qMfsvymTy3HBxVTJQ=";
|
2024-03-29 13:52:56 +01:00
|
|
|
};
|
|
|
|
prevPatches = old.patches or [ ];
|
|
|
|
# Deduplicate patch
|
|
|
|
present = builtins.elem patch prevPatches;
|
|
|
|
in
|
2024-04-05 11:55:35 +02:00
|
|
|
{
|
|
|
|
patches = prevPatches ++ final.lib.optional (!present) patch;
|
|
|
|
}
|
|
|
|
);
|
2024-03-20 08:38:41 +01:00
|
|
|
};
|
2024-01-21 20:56:00 +01:00
|
|
|
};
|
|
|
|
|
2024-01-14 17:33:16 +01:00
|
|
|
# Nix files formatter (run `nix fmt`)
|
2024-04-05 11:49:48 +02:00
|
|
|
formatter = forEachSupportedSystem ({ pkgs, ... }: pkgs.nixfmt-rfc-style);
|
2024-01-17 00:21:52 +01:00
|
|
|
|
2024-01-15 23:26:00 +01:00
|
|
|
# Example vm configuration
|
|
|
|
nixosConfigurations.vm =
|
|
|
|
let
|
|
|
|
system = "x86_64-linux";
|
2024-04-05 11:55:35 +02:00
|
|
|
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "steam-original" ];
|
2024-01-19 19:55:03 +01:00
|
|
|
pkgs = import nixpkgs { inherit system overlays config; };
|
2024-01-15 23:26:00 +01:00
|
|
|
in
|
2024-04-05 11:55:35 +02:00
|
|
|
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;
|
|
|
|
};
|
2024-01-15 23:26:00 +01:00
|
|
|
|
2024-04-05 11:55:35 +02:00
|
|
|
nix.registry.nixpkgs.flake = nixpkgs;
|
|
|
|
|
|
|
|
jconfig.enable = true;
|
|
|
|
jconfig.gui.enable = true;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2024-01-15 23:26:00 +01:00
|
|
|
|
2024-01-15 12:57:44 +01:00
|
|
|
nixosModules =
|
|
|
|
let
|
2024-02-16 20:10:20 +01:00
|
|
|
nvim-config.imports = [
|
2024-03-02 20:48:34 +01:00
|
|
|
nixvim.homeManagerModules.nixvim
|
2024-02-16 20:10:20 +01:00
|
|
|
./nvim
|
|
|
|
];
|
2024-01-21 20:56:00 +01:00
|
|
|
overlays = builtins.attrValues self.overlays;
|
|
|
|
homeManagerModuleSandalone = import ./home { inherit overlays nvim-config stylix; };
|
|
|
|
homeManagerModuleNixOS = import ./home { inherit overlays nvim-config; };
|
2024-01-15 12:57:44 +01:00
|
|
|
nixosModule = {
|
|
|
|
imports = [
|
2024-02-18 15:43:37 +01:00
|
|
|
(import ./system { inherit stylix; })
|
2024-01-15 12:57:44 +01:00
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
];
|
|
|
|
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
|
|
home-manager.useUserPackages = true;
|
2024-01-21 20:56:00 +01:00
|
|
|
home-manager.sharedModules = [ homeManagerModuleNixOS ];
|
2024-01-15 12:57:44 +01:00
|
|
|
|
|
|
|
# Pin nixpkgs
|
|
|
|
nix.registry.nixpkgs.flake = nixpkgs;
|
|
|
|
};
|
2024-01-15 12:57:59 +01:00
|
|
|
|
2024-04-05 11:55:35 +02:00
|
|
|
machines = [
|
|
|
|
"capricorn"
|
|
|
|
"gemini"
|
|
|
|
"libra"
|
|
|
|
"vm"
|
|
|
|
];
|
2024-01-15 12:57:59 +01:00
|
|
|
mkMachine = hostname: {
|
2024-01-15 23:26:00 +01:00
|
|
|
imports = [
|
|
|
|
nixosModule
|
2024-01-16 23:04:22 +01:00
|
|
|
(import (./machines + "/${hostname}") { inherit nixos-hardware; })
|
2024-01-15 23:26:00 +01:00
|
|
|
];
|
2024-04-05 11:55:35 +02:00
|
|
|
home-manager.sharedModules = [ { jhome.hostName = hostname; } ];
|
2024-01-15 12:57:59 +01:00
|
|
|
};
|
|
|
|
machineModules = lib.genAttrs machines mkMachine;
|
2024-01-15 12:57:44 +01:00
|
|
|
in
|
|
|
|
{
|
|
|
|
default = nixosModule;
|
2024-01-21 20:56:00 +01:00
|
|
|
inherit nixosModule homeManagerModuleNixOS homeManagerModuleSandalone;
|
2024-04-05 11:55:35 +02:00
|
|
|
}
|
|
|
|
// machineModules;
|
2024-01-15 23:59:15 +01:00
|
|
|
|
2024-04-05 11:55:35 +02:00
|
|
|
devShells = forEachSupportedSystem (
|
|
|
|
{ pkgs, system }:
|
|
|
|
{
|
|
|
|
default = pkgs.mkShell {
|
|
|
|
inherit (self.checks.${system}.pre-commit-check) shellHook;
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
just
|
|
|
|
self.packages.${system}.nvim
|
|
|
|
];
|
|
|
|
QEMU_OPTS_WL = "-smp 4 -device virtio-gpu-rutabaga,gfxstream-vulkan=on,cross-domain=on,hostmem=2G,wsi=headless";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
2024-01-14 17:33:16 +01:00
|
|
|
};
|
|
|
|
}
|