mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-21 06:39:09 -04:00
Compare commits
1 Commits
feature/up
...
feature/te
| Author | SHA1 | Date | |
|---|---|---|---|
| 748894f99f |
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
@@ -128,6 +128,7 @@
|
|||||||
"maxtime",
|
"maxtime",
|
||||||
"mechatroner",
|
"mechatroner",
|
||||||
"mediainfo",
|
"mediainfo",
|
||||||
|
"microvm",
|
||||||
"mklabel",
|
"mklabel",
|
||||||
"mkpart",
|
"mkpart",
|
||||||
"modesetting",
|
"modesetting",
|
||||||
|
|||||||
36
flake.nix
36
flake.nix
@@ -33,8 +33,8 @@
|
|||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
system_tools = {
|
microvm = {
|
||||||
url = "github:RichieCahill/system_tools";
|
url = "github:astro/microvm.nix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -47,6 +47,10 @@
|
|||||||
url = "github:Mic92/sops-nix";
|
url = "github:Mic92/sops-nix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
system_tools = {
|
||||||
|
url = "github:RichieCahill/system_tools";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
@@ -56,6 +60,7 @@
|
|||||||
systems,
|
systems,
|
||||||
nixos-cosmic,
|
nixos-cosmic,
|
||||||
sops-nix,
|
sops-nix,
|
||||||
|
microvm,
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
} @ inputs: let
|
||||||
inherit (self) outputs;
|
inherit (self) outputs;
|
||||||
@@ -71,10 +76,35 @@
|
|||||||
in {
|
in {
|
||||||
inherit lib;
|
inherit lib;
|
||||||
overlays = import ./overlays {inherit inputs outputs;};
|
overlays = import ./overlays {inherit inputs outputs;};
|
||||||
|
|
||||||
devShells = forEachSystem (pkgs: import ./shell.nix {inherit pkgs;});
|
devShells = forEachSystem (pkgs: import ./shell.nix {inherit pkgs;});
|
||||||
formatter = forEachSystem (pkgs: pkgs.alejandra);
|
formatter = forEachSystem (pkgs: pkgs.alejandra);
|
||||||
|
|
||||||
|
emulated-dev = nixpkgs.lib.nixosSystem {
|
||||||
|
# host system
|
||||||
|
system = "x86_64-linux";
|
||||||
|
modules = let
|
||||||
|
guestSystem = "aarch64-unknown-linux-gnu";
|
||||||
|
# you can use packages in the guest machine with cross system configuration
|
||||||
|
pkgs = import nixpkgs {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
crossSystem.config = guestSystem;
|
||||||
|
};
|
||||||
|
in [
|
||||||
|
{nixpkgs.crossSystem.config = guestSystem;}
|
||||||
|
microvm.nixosModules.microvm
|
||||||
|
{
|
||||||
|
microvm = {
|
||||||
|
# you can choose what CPU will be emulated by qemu
|
||||||
|
cpu = "cortex-a53";
|
||||||
|
hypervisor = "qemu";
|
||||||
|
};
|
||||||
|
environment.systemPackages = with pkgs; [ cowsay htop ];
|
||||||
|
services.getty.autologinUser = "root";
|
||||||
|
system.stateVersion = "23.11";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
bob = lib.nixosSystem {
|
bob = lib.nixosSystem {
|
||||||
modules = [
|
modules = [
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [ ./nix_builder.nix ];
|
imports = [
|
||||||
|
./nix_builder.nix
|
||||||
|
];
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
users.github-runners = {
|
users.github-runners = {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{ config, lib, ... }:
|
{ config, inputs, lib, ... }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
@@ -6,6 +6,8 @@ let
|
|||||||
vars = import ../vars.nix;
|
vars = import ../vars.nix;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
imports = [ inputs.microvm.nixosModules.microvm ];
|
||||||
|
|
||||||
options.services.nix_builder.containers = mkOption {
|
options.services.nix_builder.containers = mkOption {
|
||||||
type = types.attrsOf (types.submodule ({ name, ... }: {
|
type = types.attrsOf (types.submodule ({ name, ... }: {
|
||||||
options.enable = mkEnableOption "GitHub runner container";
|
options.enable = mkEnableOption "GitHub runner container";
|
||||||
@@ -81,3 +83,4 @@ in
|
|||||||
}
|
}
|
||||||
) config.services.nix_builder.containers;
|
) config.services.nix_builder.containers;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user