nixos-config/roles/base.nix

18 lines
189 B
Nix
Raw Normal View History

2021-01-21 22:13:53 +04:00
{ inputs, ... }: {
2023-01-27 22:51:09 +04:00
imports = with inputs.self.nixosProfiles; [
2021-06-24 12:41:17 +04:00
# PROFILES
2021-06-11 15:52:11 +04:00
autoRun
xdg
2021-06-08 20:35:21 +04:00
git
gpg
2021-01-21 22:13:53 +04:00
locale
2021-06-08 20:35:21 +04:00
misc
2021-01-21 22:13:53 +04:00
network
nix
2023-02-16 18:51:34 +04:00
user
2021-01-21 22:13:53 +04:00
ssh
zsh
];
}