nixos-config/roles/container.nix

28 lines
471 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
2022-12-10 22:34:39 +03:00
users
2022-02-11 14:07:03 +03:00
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
}