nixos-config/roles/container.nix

24 lines
381 B
Nix
Raw Permalink Normal View History

2022-02-11 14:07:03 +03:00
{ inputs, pkgs, ... }: {
2023-10-13 19:43:02 +03:00
imports = with inputs.self.customProfiles; [
2022-02-11 14:07:03 +03:00
inputs.home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
git
gpg
locale
misc
network
nix
2023-01-26 00:23:55 +03:00
nnn
2022-02-11 14:07:03 +03:00
overlay
ssh
user
vlock
2022-02-11 14:07:03 +03:00
zsh
];
environment.systemPackages = [ pkgs.kitty ];
2022-02-14 03:33:03 +03:00
}