nixos-config/roles/container.nix

24 lines
441 B
Nix
Raw Normal View History

2022-02-11 14:07:03 +03:00
{ inputs, pkgs, ... }: {
imports = with inputs.self.nixosModules; with inputs.self.nixosProfiles; [
inputs.home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
devices
git
gpg
locale
misc
network
nix
overlay
secrets
secrets-envsubst
security
ssh
zsh
];
environment.systemPackages = [ pkgs.kitty ];
}