nixos-config/roles/container.nix

30 lines
492 B
Nix
Raw Normal View History

2022-02-11 14:07:03 +03:00
{ inputs, pkgs, ... }: {
2023-01-26 00:09:21 +03:00
imports = with inputs.self.customModules; with inputs.self.nixosProfiles; [
2022-02-11 14:07:03 +03:00
inputs.home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
devices
git
gpg
locale
misc
network
nix
2023-01-26 00:23:55 +03:00
nnn
2022-02-11 14:07:03 +03:00
overlay
2023-01-26 00:23:55 +03:00
persist
2022-02-11 14:07:03 +03:00
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
}