60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{ nixpkgs, lix-module, nixos-hardware, home-manager, agenix, neovim-nightly-overlay, nifoc-overlay }:
|
|
|
|
let
|
|
default-system = "aarch64-linux";
|
|
|
|
nixpkgsConfig = {
|
|
overlays = [
|
|
neovim-nightly-overlay.overlays.default
|
|
nifoc-overlay.overlay
|
|
];
|
|
|
|
config = {
|
|
allowUnfree = true;
|
|
allowBroken = true;
|
|
|
|
permittedInsecurePackages = [ ];
|
|
};
|
|
};
|
|
in
|
|
{
|
|
arch = default-system;
|
|
|
|
system = nixpkgs.lib.nixosSystem {
|
|
system = default-system;
|
|
modules = [
|
|
{
|
|
nixpkgs = nixpkgsConfig;
|
|
nix = {
|
|
registry.nixpkgs.to = { type = "path"; path = nixpkgs.outPath; };
|
|
nixPath = nixpkgs.lib.mkForce [ "nixpkgs=flake:nixpkgs" ];
|
|
};
|
|
}
|
|
|
|
nixos-hardware.nixosModules.raspberry-pi-4
|
|
|
|
lix-module.nixosModules.default
|
|
|
|
home-manager.nixosModules.home-manager
|
|
{
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
users.daniel = import ../../home/hosts/argon.nix;
|
|
};
|
|
}
|
|
|
|
agenix.nixosModules.default
|
|
|
|
../hosts/argon.nix
|
|
];
|
|
};
|
|
|
|
deployment = {
|
|
hostname = "argon";
|
|
sshUser = "root";
|
|
remoteBuild = true;
|
|
autoRollback = false;
|
|
magicRollback = false;
|
|
};
|
|
}
|