nixos-config/roles/container.nix

27 lines
461 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
2022-02-14 03:33:03 +03:00
vscode-server
2022-02-11 14:07:03 +03:00
];
environment.systemPackages = [ pkgs.kitty ];
2022-02-14 03:33:03 +03:00
}