stuff
This commit is contained in:
parent
33a01619cf
commit
d1522589f0
|
@ -3,9 +3,8 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../common/desktop.nix
|
../common/desktop.nix
|
||||||
../common/steam.nix
|
|
||||||
../common/minecraft.nix
|
|
||||||
../common/nvidia.nix
|
../common/nvidia.nix
|
||||||
|
../common/gaming.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
|
|
|
@ -37,6 +37,7 @@ in {
|
||||||
xcape
|
xcape
|
||||||
ffmpeg
|
ffmpeg
|
||||||
|
|
||||||
|
ncmpcpp
|
||||||
pciutils
|
pciutils
|
||||||
xscreensaver
|
xscreensaver
|
||||||
ncpamixer
|
ncpamixer
|
||||||
|
@ -44,7 +45,6 @@ in {
|
||||||
dunst
|
dunst
|
||||||
libnotify
|
libnotify
|
||||||
tig
|
tig
|
||||||
cmus
|
|
||||||
neomutt
|
neomutt
|
||||||
mpv
|
mpv
|
||||||
yt-dlp
|
yt-dlp
|
||||||
|
@ -124,6 +124,18 @@ in {
|
||||||
nativeMessagingHosts.tridactyl = true;
|
nativeMessagingHosts.tridactyl = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.mpd = {
|
||||||
|
enable = true;
|
||||||
|
musicDirectory = "/home/usr/music";
|
||||||
|
extraConfig = ''
|
||||||
|
audio_output {
|
||||||
|
type "pulse"
|
||||||
|
name "pulseaudio"
|
||||||
|
server "127.0.0.1"
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
users.users.usr = {
|
users.users.usr = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" ];
|
extraGroups = [ "wheel" ];
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ lib, config, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -9,5 +8,8 @@
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
steam-run
|
steam-run
|
||||||
|
prismlauncher
|
||||||
|
xonotic
|
||||||
|
minetest
|
||||||
];
|
];
|
||||||
}
|
}
|
|
@ -1,6 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
prismlauncher
|
|
||||||
];
|
|
||||||
}
|
|
Loading…
Reference in New Issue