Merge branch 'config' of im.badat.dev:bad/devos into config

This commit is contained in:
Bad 2021-04-28 22:04:34 +02:00
commit 577a52cbaf
2 changed files with 10 additions and 3 deletions

7
profiles/tor/default.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tor-browser-bundle-bin
];
services.tor.enable = true;
}

View file

@ -1,10 +1,10 @@
{ users, profiles, userProfiles, ... }:
{
system = with profiles; rec {
base = [ users.root ];
workstation = base ++ [ sway develop game profiles.workstation ssh flatpak torrents pwn ];
base = [ users.mae users.root ];
workstation = [ users.root sway develop game profiles.workstation ssh flatpak torrents pwn tor ];
desktop = workstation ++ [ users.mae-desk amd school three_dee ];
lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager hosts_block ];
lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager ];
};
user = with userProfiles; rec {
base = [ direnv git ];