Merge branch 'config' of im.badat.dev:bad/devos into config
This commit is contained in:
commit
577a52cbaf
2 changed files with 10 additions and 3 deletions
7
profiles/tor/default.nix
Normal file
7
profiles/tor/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
tor-browser-bundle-bin
|
||||||
|
];
|
||||||
|
services.tor.enable = true;
|
||||||
|
}
|
|
@ -1,10 +1,10 @@
|
||||||
{ users, profiles, userProfiles, ... }:
|
{ users, profiles, userProfiles, ... }:
|
||||||
{
|
{
|
||||||
system = with profiles; rec {
|
system = with profiles; rec {
|
||||||
base = [ users.root ];
|
base = [ users.mae users.root ];
|
||||||
workstation = base ++ [ sway develop game profiles.workstation ssh flatpak torrents pwn ];
|
workstation = [ users.root sway develop game profiles.workstation ssh flatpak torrents pwn tor ];
|
||||||
desktop = workstation ++ [ users.mae-desk amd school three_dee ];
|
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 {
|
user = with userProfiles; rec {
|
||||||
base = [ direnv git ];
|
base = [ direnv git ];
|
||||||
|
|
Loading…
Reference in a new issue