All checks were successful
/ check (push) Successful in 1m11s
Move them to each host's configuration.nix file and keep flake.nix shorter and cleaner.
32 lines
517 B
Nix
32 lines
517 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.agenix.nixosModules.default
|
|
inputs.disko.nixosModules.disko
|
|
inputs.nixos-wsl.nixosModules.default
|
|
|
|
../common
|
|
|
|
../../users/opdavies.nix
|
|
];
|
|
|
|
cli = {
|
|
docker.enable = true;
|
|
|
|
password-store = {
|
|
enable = true;
|
|
|
|
extensions = with pkgs.passExtensions; [
|
|
pass-otp
|
|
];
|
|
};
|
|
};
|
|
|
|
wsl = {
|
|
enable = true;
|
|
defaultUser = "opdavies";
|
|
};
|
|
|
|
home-manager.users.opdavies.home.sessionVariables.WAYLAND_DISPLAY = "";
|
|
}
|