setting up media server
This commit is contained in:
parent
023d644c19
commit
d976ee4c71
2 changed files with 6 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, inputs, pkgs, ... }:
|
||||
{ config, lib, nix-config, inputs, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
|
@ -10,6 +10,10 @@
|
|||
config = {
|
||||
allowUnfree = true;
|
||||
};
|
||||
|
||||
overlays = builtins.attrValues nix-config.overlays ++ [
|
||||
inputs.nh.overlays.default
|
||||
];
|
||||
};
|
||||
|
||||
nix = {
|
||||
|
@ -51,10 +55,6 @@
|
|||
users.users.media = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" "input" "audio" "video" "network" "networkmanager" ]; # Enable ‘sudo’ for the user.
|
||||
packages = with pkgs; [
|
||||
wezterm
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue