hmm
This commit is contained in:
parent
b69972cb03
commit
9b0cff715f
9 changed files with 51 additions and 14 deletions
3
hosts/common/optional/distrobox.nix
Normal file
3
hosts/common/optional/distrobox.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = [pkgs.distrobox];
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
{pkgs, ...}: {
|
||||
# Enable the GNOME Desktop Environment.
|
||||
services = {
|
||||
xserver = {
|
||||
|
|
@ -13,6 +13,14 @@
|
|||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
gnome-tweaks
|
||||
|
||||
# Extension
|
||||
gnomeExtensions.arcmenu
|
||||
gnomeExtensions.blur-my-shell
|
||||
];
|
||||
|
||||
# adds alacritty to nautilus
|
||||
programs.nautilus-open-any-terminal = {
|
||||
enable = true;
|
||||
|
|
|
|||
9
hosts/common/optional/spotify.nix
Normal file
9
hosts/common/optional/spotify.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
spotifyd
|
||||
spotify-player
|
||||
ncspot
|
||||
];
|
||||
# Local Discovery
|
||||
networking.firewall.allowedTCPPorts = [57621];
|
||||
}
|
||||
|
|
@ -21,9 +21,14 @@ in {
|
|||
# thunderbird
|
||||
gnome-software
|
||||
neovim
|
||||
gcc
|
||||
cmake
|
||||
rustup
|
||||
pkg-config
|
||||
openssl
|
||||
protonvpn-gui
|
||||
ansible
|
||||
godot
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,9 @@
|
|||
../common/optional/flatpak.nix
|
||||
../common/optional/ckb-next.nix
|
||||
../common/optional/docker.nix
|
||||
../common/optional/distrobox.nix
|
||||
../common/optional/virt-manager.nix
|
||||
../common/optional/spotify.nix
|
||||
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
|
|
@ -59,6 +61,7 @@
|
|||
gnome-menus
|
||||
inputs.nix-software-center.packages.${system}.nix-software-center
|
||||
inputs.nixos-conf-editor.packages.${system}.nixos-conf-editor
|
||||
xorg.libX11
|
||||
];
|
||||
|
||||
# ssh agent
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue