mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Merge remote-tracking branch 'refs/remotes/origin/main'
This commit is contained in:
commit
8920fa33bc
8 changed files with 168 additions and 148 deletions
|
|
@ -3,11 +3,7 @@ let cfg = config.mods;
|
|||
|
||||
in {
|
||||
# Hardware
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
inputs.shabitica.nixosModules."x86_64-linux".default
|
||||
inputs.actual.nixosModules.default
|
||||
];
|
||||
imports = [ ./hardware-configuration.nix ];
|
||||
|
||||
environment.systemPackages = with inputs.nix-alien.packages.${system};
|
||||
[ nix-alien ];
|
||||
|
|
@ -28,8 +24,7 @@ in {
|
|||
mods.theme.wallpaper = ./wallpaper.png;
|
||||
|
||||
mods.containers.steam.enable = false;
|
||||
mods.server.media.enable = true;
|
||||
mods.server.astral.enable = true;
|
||||
mods.server.astral.enable = false;
|
||||
mods.server.astral.autoStart = false;
|
||||
|
||||
mods.docker.media.enable = false;
|
||||
|
|
@ -40,9 +35,15 @@ in {
|
|||
mods.wireguard.id = 2;
|
||||
mods.i2p.enable = true;
|
||||
|
||||
mods.server.homebox.enable = true;
|
||||
mods.server.nginx.ports.homebox = 3002;
|
||||
|
||||
services.xserver.windowManager.i3.enable = true;
|
||||
services.actual.enable = true;
|
||||
|
||||
virtualisation.virtualbox.host.enable = true;
|
||||
users.extraGroups.vboxusers.members = [ "user-with-access-to-virtualbox" ];
|
||||
|
||||
# Proprietary </3
|
||||
mods.unfree.steam.enable = true;
|
||||
mods.unfree.nvidia.enable = true;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
mods.server.nginx.ports = {
|
||||
photos = 3001;
|
||||
homebox = 3002;
|
||||
|
||||
search = 8081;
|
||||
videos = 8082;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue