flake: initial arion support
This commit is contained in:
parent
6183bd13c5
commit
479374347f
2 changed files with 9 additions and 0 deletions
|
|
@ -7,6 +7,9 @@
|
||||||
home-manager.url = "github:nix-community/home-manager";
|
home-manager.url = "github:nix-community/home-manager";
|
||||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
|
arion.url = "github:hercules-ci/arion";
|
||||||
|
arion.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
stylix = {
|
stylix = {
|
||||||
url = "github:danth/stylix";
|
url = "github:danth/stylix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
@ -23,6 +26,7 @@
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
home-manager,
|
home-manager,
|
||||||
|
arion,
|
||||||
stylix,
|
stylix,
|
||||||
niri,
|
niri,
|
||||||
nix-vscode-extensions,
|
nix-vscode-extensions,
|
||||||
|
|
@ -75,6 +79,7 @@
|
||||||
inherit self;
|
inherit self;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
|
arion.nixosModules.arion
|
||||||
./hosts/main-homelab/configuration.nix
|
./hosts/main-homelab/configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,10 @@
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
|
virtualisation.arion = {
|
||||||
|
backend = "podman-socket";
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
nano
|
nano
|
||||||
lshw
|
lshw
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue