restructure
This commit is contained in:
parent
d7bd686648
commit
eecb15a4ec
50 changed files with 281 additions and 564 deletions
38
modules/home/programs/default.nix
Normal file
38
modules/home/programs/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ pkgs, osConfig, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
krita
|
||||
loupe
|
||||
gnome.nautilus
|
||||
];
|
||||
|
||||
# Needed for some features in nautilus such as auto-mounting and trash
|
||||
osConfig.services.gvfs.enable = true;
|
||||
|
||||
programs.pandoc = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.mpv = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
osConfig.networking.firewall.allowedTCPPorts = [ 57621 ];
|
||||
services.spotifyd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
global = {
|
||||
device_name = osConfig.networking.hostName;
|
||||
bitrate = 320;
|
||||
volume_normalisation = true;
|
||||
autoplay = false;
|
||||
zeroconf_port = 57621;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = import ./alacritty-config.nix;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue