forked from hacc/haccfiles
Compare commits
3 commits
main
...
no_compani
Author | SHA1 | Date | |
---|---|---|---|
|
3b5b213fde | ||
|
a196a482cd | ||
|
c954df75a5 |
4 changed files with 10 additions and 7 deletions
|
@ -44,7 +44,7 @@ in {
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
smartmontools lm_sensors htop tcpdump nload iftop
|
smartmontools lm_sensors htop tcpdump nload iftop
|
||||||
# bottom
|
bottom
|
||||||
ripgrep
|
ripgrep
|
||||||
git wget
|
git wget
|
||||||
kitty.terminfo
|
kitty.terminfo
|
||||||
|
@ -61,7 +61,7 @@ in {
|
||||||
socat
|
socat
|
||||||
tmux
|
tmux
|
||||||
gnupg
|
gnupg
|
||||||
vim
|
vim neovim
|
||||||
patchelf
|
patchelf
|
||||||
binutils
|
binutils
|
||||||
dnsutils
|
dnsutils
|
||||||
|
@ -69,6 +69,7 @@ in {
|
||||||
nmap
|
nmap
|
||||||
s-tui stress
|
s-tui stress
|
||||||
ffmpeg-full
|
ffmpeg-full
|
||||||
|
bat
|
||||||
];
|
];
|
||||||
|
|
||||||
security.acme.email = "info+acme@hacc.space";
|
security.acme.email = "info+acme@hacc.space";
|
||||||
|
|
|
@ -9,15 +9,16 @@
|
||||||
# boot.plymouth.splashBeforeUnlock = true;
|
# boot.plymouth.splashBeforeUnlock = true;
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
pulsemixer pavucontrol
|
pulsemixer pavucontrol
|
||||||
firefox git kitty j4-dmenu-desktop bemenu
|
firefox kitty j4-dmenu-desktop bemenu
|
||||||
breeze-qt5 mako
|
breeze-qt5 mako
|
||||||
mpv youtube-dl
|
mpv youtube-dl
|
||||||
wl-clipboard mumble
|
wl-clipboard mumble
|
||||||
xdg_utils
|
xdg_utils
|
||||||
slurp grim libnotify
|
slurp grim libnotify
|
||||||
_1password-gui
|
_1password-gui
|
||||||
|
gimp
|
||||||
# gnome3.nautilus
|
# 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;
|
sound.enable = true;
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
hardware.decklink.enable = true;
|
hardware.decklink.enable = true;
|
||||||
|
|
||||||
networking.hostName = "nixda"; # Define your hostname.
|
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 = {
|
networking.wg-quick.interfaces.cornbox = {
|
||||||
privateKeyFile = "/etc/wireguard/cornbox.key";
|
privateKeyFile = "/etc/wireguard/cornbox.key";
|
||||||
|
@ -54,6 +54,7 @@
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
password = "hacchacc";
|
password = "hacchacc";
|
||||||
extraGroups = [ "audio" "video" ];
|
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;
|
services.pipewire.enable = true;
|
||||||
|
|
|
@ -11,7 +11,7 @@ let
|
||||||
newpkgs = {
|
newpkgs = {
|
||||||
alps = callPackage ./alps {};
|
alps = callPackage ./alps {};
|
||||||
|
|
||||||
companion = callPackage ./companion {};
|
# companion = callPackage ./companion {};
|
||||||
libvips = callPackage ./libvips {};
|
libvips = callPackage ./libvips {};
|
||||||
|
|
||||||
docker = pkgs.docker.overrideAttrs (super: {
|
docker = pkgs.docker.overrideAttrs (super: {
|
||||||
|
|
Loading…
Reference in a new issue