Compare commits

...

3 Commits

Author SHA1 Message Date
schweby 3b5b213fde enable ssh for stream user 2021-12-25 18:56:50 +01:00
schweby a196a482cd cleanup default apps 2021-12-25 18:56:29 +01:00
schweby c954df75a5 nixda: disable companion 2021-12-19 17:21:43 +01:00
4 changed files with 10 additions and 7 deletions

View File

@ -44,7 +44,7 @@ in {
environment.systemPackages = with pkgs; [
smartmontools lm_sensors htop tcpdump nload iftop
# bottom
bottom
ripgrep
git wget
kitty.terminfo
@ -61,7 +61,7 @@ in {
socat
tmux
gnupg
vim
vim neovim
patchelf
binutils
dnsutils
@ -69,6 +69,7 @@ in {
nmap
s-tui stress
ffmpeg-full
bat
];
security.acme.email = "info+acme@hacc.space";

View File

@ -9,15 +9,16 @@
# boot.plymouth.splashBeforeUnlock = true;
environment.systemPackages = with pkgs; [
pulsemixer pavucontrol
firefox git kitty j4-dmenu-desktop bemenu
firefox kitty j4-dmenu-desktop bemenu
breeze-qt5 mako
mpv youtube-dl
wl-clipboard mumble
xdg_utils
slurp grim libnotify
_1password-gui
gimp
# gnome3.nautilus
] ++ (with pkgs; [ alacritty picom feh copyq polybar cinnamon.nemo rofi arandr notepadqq nomacs bat ]);
] ++ (with pkgs; [ alacritty picom feh copyq polybar cinnamon.nemo rofi arandr notepadqq nomacs imv gthumb ]);
sound.enable = true;
time.timeZone = "Europe/Berlin";

View File

@ -24,8 +24,8 @@
hardware.decklink.enable = true;
networking.hostName = "nixda"; # Define your hostname.
environment.systemPackages = with pkgs; [ blackmagicDesktopVideo blender companion ];
## environment.systemPackages = with pkgs; [ blackmagicDesktopVideo blender companion ];
environment.systemPackages = with pkgs; [ blackmagicDesktopVideo blender ];
networking.wg-quick.interfaces.cornbox = {
privateKeyFile = "/etc/wireguard/cornbox.key";
@ -54,6 +54,7 @@
isNormalUser = true;
password = "hacchacc";
extraGroups = [ "audio" "video" ];
openssh.authorizedKeys.keys = with pkgs.lib; concatLists (mapAttrsToList (name: user: if elem "wheel" user.extraGroups then user.openssh.authorizedKeys.keys else []) config.users.users);
};
services.pipewire.enable = true;

View File

@ -11,7 +11,7 @@ let
newpkgs = {
alps = callPackage ./alps {};
companion = callPackage ./companion {};
# companion = callPackage ./companion {};
libvips = callPackage ./libvips {};
docker = pkgs.docker.overrideAttrs (super: {