refactor(flake): hand roll flake
This commit is contained in:
parent
9567cce5fa
commit
bd88d8382c
5 changed files with 89 additions and 100 deletions
23
flake.lock
23
flake.lock
|
@ -980,8 +980,7 @@
|
||||||
"nvim-treesitter-textsubjects": "nvim-treesitter-textsubjects",
|
"nvim-treesitter-textsubjects": "nvim-treesitter-textsubjects",
|
||||||
"pre-commit-hooks": "pre-commit-hooks",
|
"pre-commit-hooks": "pre-commit-hooks",
|
||||||
"smartcolumn-nvim": "smartcolumn-nvim",
|
"smartcolumn-nvim": "smartcolumn-nvim",
|
||||||
"stable": "stable",
|
"stable": "stable"
|
||||||
"utils": "utils"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rust-overlay": {
|
"rust-overlay": {
|
||||||
|
@ -1083,26 +1082,6 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"utils": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-utils": [
|
|
||||||
"flake-utils"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1657226504,
|
|
||||||
"narHash": "sha256-GIYNjuq4mJlFgqKsZ+YrgzWm0IpA4axA3MCrdKYj7gs=",
|
|
||||||
"owner": "gytis-ivaskevicius",
|
|
||||||
"repo": "flake-utils-plus",
|
|
||||||
"rev": "2bf0f91643c2e5ae38c1b26893ac2927ac9bd82a",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "gytis-ivaskevicius",
|
|
||||||
"repo": "flake-utils-plus",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"wlroots": {
|
"wlroots": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
|
134
flake.nix
134
flake.nix
|
@ -13,8 +13,6 @@
|
||||||
stable.url = "github:nixos/nixpkgs/nixos-22.11";
|
stable.url = "github:nixos/nixpkgs/nixos-22.11";
|
||||||
|
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
utils.url = "github:gytis-ivaskevicius/flake-utils-plus";
|
|
||||||
utils.inputs.flake-utils.follows = "flake-utils";
|
|
||||||
|
|
||||||
agenix.inputs.nixpkgs.follows = "nixpkgs";
|
agenix.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
agenix.url = "github:ryantm/agenix";
|
agenix.url = "github:ryantm/agenix";
|
||||||
|
@ -79,50 +77,51 @@
|
||||||
║ Outputs ║
|
║ Outputs ║
|
||||||
╚══════════════════════════════════════════════════════════╝
|
╚══════════════════════════════════════════════════════════╝
|
||||||
*/
|
*/
|
||||||
outputs =
|
outputs = inputs@{ self, nixpkgs, ... }:
|
||||||
inputs@{ self, nixpkgs, utils, ... }:
|
let
|
||||||
utils.lib.mkFlake {
|
systems = [ "x86_64-linux" "aarch64-linux" ];
|
||||||
inherit self inputs;
|
|
||||||
|
|
||||||
supportedSystems = [ "x86_64-linux" ];
|
forEachSystem = lib.genAttrs systems;
|
||||||
|
|
||||||
channelsConfig.allowUnfree = true;
|
|
||||||
|
|
||||||
lib = nixpkgs.lib.extend
|
lib = nixpkgs.lib.extend
|
||||||
(self: _: { my = import ./lib { lib = self; }; });
|
(self: _: { my = import ./lib { lib = self; }; });
|
||||||
|
|
||||||
/*
|
|
||||||
╔══════════════════════════════════════════════════════════╗
|
|
||||||
║ Overlays ║
|
|
||||||
╚══════════════════════════════════════════════════════════╝
|
|
||||||
*/
|
|
||||||
overlay = import ./overlays {
|
overlay = import ./overlays {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
inherit (self) lib;
|
inherit (self) lib;
|
||||||
};
|
};
|
||||||
|
|
||||||
channels.nixpkgs.overlaysBuilder = _: [
|
config.allowUnfree = true;
|
||||||
|
|
||||||
|
overlays = [
|
||||||
inputs.hypr-contrib.overlays.default
|
inputs.hypr-contrib.overlays.default
|
||||||
inputs.hyprland.overlays.default
|
inputs.hyprland.overlays.default
|
||||||
inputs.neovim-nightly-overlay.overlay
|
inputs.neovim-nightly-overlay.overlay
|
||||||
inputs.utils.overlay
|
overlay
|
||||||
self.overlay
|
|
||||||
];
|
];
|
||||||
|
|
||||||
overlays = utils.lib.exportOverlays
|
pkgsFor = system: import nixpkgs {
|
||||||
{
|
inherit system config;
|
||||||
inherit (self) pkgs inputs;
|
overlays = overlays ++ [
|
||||||
} // {
|
(
|
||||||
default = self.overlay;
|
_: prev: {
|
||||||
|
master = import inputs.master {
|
||||||
|
inherit (prev) system;
|
||||||
|
inherit overlays config;
|
||||||
|
};
|
||||||
|
stable = import inputs.stable {
|
||||||
|
inherit (prev) system;
|
||||||
|
inherit overlays config;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
)
|
||||||
|
overlay
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
defaultModules = [
|
||||||
╔══════════════════════════════════════════════════════════╗
|
{ nixpkgs = { inherit config; }; }
|
||||||
║ Modules ║
|
./modules
|
||||||
╚══════════════════════════════════════════════════════════╝
|
|
||||||
*/
|
|
||||||
hostDefaults.modules = [
|
|
||||||
./modules/default.nix
|
|
||||||
inputs.home-manager.nixosModule
|
inputs.home-manager.nixosModule
|
||||||
{
|
{
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
@ -134,35 +133,22 @@
|
||||||
inputs.agenix.nixosModules.age
|
inputs.agenix.nixosModules.age
|
||||||
];
|
];
|
||||||
|
|
||||||
|
hosts = self.lib.my.mapModules
|
||||||
hosts.nixos-laptop.modules = [
|
(path:
|
||||||
./hosts/nixos-laptop
|
let
|
||||||
];
|
system = import "${path}/system.nix";
|
||||||
|
pkgs = pkgsFor system;
|
||||||
|
in
|
||||||
hosts.nixos-desktop.modules = [
|
lib.nixosSystem {
|
||||||
./hosts/nixos-desktop
|
inherit pkgs system lib;
|
||||||
];
|
specialArgs = {
|
||||||
|
inherit inputs;
|
||||||
/*
|
|
||||||
╔══════════════════════════════════════════════════════════╗
|
|
||||||
║ Other Outputs ║
|
|
||||||
╚══════════════════════════════════════════════════════════╝
|
|
||||||
*/
|
|
||||||
outputsBuilder = channels:
|
|
||||||
with channels.nixpkgs; {
|
|
||||||
devShells.default = mkShell {
|
|
||||||
inherit (self.checks.${system}.pre-commit-check) shellHook;
|
|
||||||
name = "dotfiles";
|
|
||||||
packages = [
|
|
||||||
# Secrets
|
|
||||||
pkgs.agenix
|
|
||||||
# cachix
|
|
||||||
cachix
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
modules = defaultModules ++ [ path ];
|
||||||
|
})
|
||||||
|
./hosts;
|
||||||
|
|
||||||
checks.pre-commit-check = inputs.pre-commit-hooks.lib."${system}".run {
|
pre-commit-check = system: inputs.pre-commit-hooks.lib."${system}".run {
|
||||||
src = ./.;
|
src = ./.;
|
||||||
hooks = {
|
hooks = {
|
||||||
nixpkgs-fmt.enable = true;
|
nixpkgs-fmt.enable = true;
|
||||||
|
@ -171,8 +157,42 @@
|
||||||
stylua.enable = true;
|
stylua.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
in
|
||||||
|
with lib; {
|
||||||
|
inherit lib;
|
||||||
|
|
||||||
packages = utils.lib.exportPackages self.overlays channels;
|
pkgs = genAttrs systems pkgsFor;
|
||||||
|
|
||||||
|
# ╔══════════════════════════════════════════════════════════╗
|
||||||
|
# ║ NixOS Configurations ║
|
||||||
|
# ╚══════════════════════════════════════════════════════════╝
|
||||||
|
|
||||||
|
nixosConfigurations = hosts;
|
||||||
|
|
||||||
|
# ╔══════════════════════════════════════════════════════════╗
|
||||||
|
# ║ Other Outputs ║
|
||||||
|
# ╚══════════════════════════════════════════════════════════╝
|
||||||
|
|
||||||
|
devShells = forEachSystem (system:
|
||||||
|
let
|
||||||
|
pkgs = pkgsFor system;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
default = pkgs.mkShell
|
||||||
|
{
|
||||||
|
inherit (pre-commit-check system) shellHook;
|
||||||
|
name = "dotfiles";
|
||||||
|
packages = with pkgs; [
|
||||||
|
# Secrets
|
||||||
|
agenix
|
||||||
|
# cachix
|
||||||
|
cachix
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
checks = forEachSystem (system: {
|
||||||
|
pre-commit-check = pre-commit-check system;
|
||||||
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
1
hosts/nixos-desktop/system.nix
Normal file
1
hosts/nixos-desktop/system.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
"x86_64-linux"
|
1
hosts/nixos-laptop/system.nix
Normal file
1
hosts/nixos-laptop/system.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
"x86_64-linux"
|
|
@ -1,12 +0,0 @@
|
||||||
{ inputs, ... }:
|
|
||||||
|
|
||||||
_: prev: {
|
|
||||||
master = import inputs.master {
|
|
||||||
inherit (prev) system;
|
|
||||||
config.allowUnfree = true;
|
|
||||||
};
|
|
||||||
stable = import inputs.stable {
|
|
||||||
inherit (prev) system;
|
|
||||||
config.allowUnfree = true;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue