Remove with antipatter and aggregate google-chrome override
This commit is contained in:
parent
a4b29ec259
commit
93b0ccf178
46 changed files with 264 additions and 452 deletions
|
|
@ -15,7 +15,7 @@ with lib; {
|
|||
|
||||
environment = {
|
||||
pathsToLink = [ "/share/zsh" ];
|
||||
systemPackages = with pkgs; [ kakoune tmux vim ];
|
||||
systemPackages = builtins.attrValues { inherit (pkgs) kakoune tmux vim; };
|
||||
};
|
||||
|
||||
i18n.defaultLocale = "it_IT.UTF-8";
|
||||
|
|
@ -59,7 +59,7 @@ with lib; {
|
|||
};
|
||||
# bazarr = { enable = true; openFirewall = true; group = "users"; };
|
||||
# blueman.enable = true;
|
||||
dbus.packages = with pkgs; [ dconf ];
|
||||
dbus.packages = [ pkgs.dconf ];
|
||||
# fail2ban = { enable = true; bantime-increment.enable = true; };
|
||||
gnome.gnome-keyring.enable = true;
|
||||
# gvfs = { enable = true; package = mkForce pkgs.gnome3.gvfs; };
|
||||
|
|
@ -235,51 +235,6 @@ with lib; {
|
|||
# };
|
||||
# };
|
||||
|
||||
# systemd.packages = with pkgs; [ syncthing ];
|
||||
# systemd.services =
|
||||
# let
|
||||
# common = {
|
||||
# documentation = [ "man:syncthing(1)" ];
|
||||
# startLimitIntervalSec = 60;
|
||||
# startLimitBurst = 4;
|
||||
# after = [ "network.target" ];
|
||||
# environment = { STNORESTART = "yes"; STNOUPGRADE = "yes"; };
|
||||
# wantedBy = [ "default.target" ];
|
||||
# serviceConfig = {
|
||||
# Restart = "on-failure";
|
||||
# RestartSec = 1;
|
||||
# SuccessExitStatus = "3 4";
|
||||
# RestartForceExitStatus = "3 4";
|
||||
|
||||
# Group = config.ids.gids.users;
|
||||
# MemoryDenyWriteExecute = true;
|
||||
# NoNewPrivileges = true;
|
||||
# PrivateDevices = true;
|
||||
# PrivateMounts = true;
|
||||
# PrivateTmp = true;
|
||||
# PrivateUsers = true;
|
||||
# ProtectControlGroups = true;
|
||||
# ProtectHostname = true;
|
||||
# ProtectKernelModules = true;
|
||||
# ProtectKernelTunables = true;
|
||||
# RestrictNamespaces = true;
|
||||
# RestrictRealtime = true;
|
||||
# RestrictSUIDSGID = true;
|
||||
# CapabilityBoundingSet = [ "~CAP_SYS_PTRACE" "~CAP_SYS_ADMIN" "~CAP_SETGID" "~CAP_SETUID" "~CAP_SETPCAP" "~CAP_SYS_TIME" "~CAP_KILL" ];
|
||||
# };
|
||||
# };
|
||||
# in
|
||||
# {
|
||||
# syncthing-bertof = recursiveUpdate common {
|
||||
# description = "Syncthing service bertof";
|
||||
# serviceConfig = { User = "bertof"; ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser -gui-address=0.0.0.0:8384 -home=/mnt/raid0/bertof/Syncthing/.config"; };
|
||||
# };
|
||||
# syncthing-tiziano = recursiveUpdate common {
|
||||
# description = "Syncthing service tiziano";
|
||||
# serviceConfig = { User = "tiziano"; ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser -gui-address=0.0.0.0:8385 -home=/mnt/raid0/tiziano/Syncthing/.config"; };
|
||||
# };
|
||||
# };
|
||||
|
||||
security.sudo.extraConfig = ''
|
||||
Defaults pwfeedback
|
||||
'';
|
||||
|
|
|
|||
16
freya/hm.nix
16
freya/hm.nix
|
|
@ -24,22 +24,16 @@
|
|||
layout = "it";
|
||||
options = [ "terminate:ctrl_alt_bksp" "compose:rctrl" ];
|
||||
};
|
||||
packages = with pkgs; [
|
||||
file
|
||||
htop
|
||||
neofetch
|
||||
nix-prefetch-scripts
|
||||
ripgrep
|
||||
wget
|
||||
xclip
|
||||
yq
|
||||
];
|
||||
packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
file htop neofetch nix-prefetch-scripts ripgrep wget xclip yq;
|
||||
};
|
||||
};
|
||||
imports = [
|
||||
../hm_modules/__basic.nix
|
||||
|
||||
../hm_modules/configurations.nix
|
||||
../hm_modules/fonts.nix
|
||||
# ../hm_modules/fonts.nix
|
||||
../hm_modules/bash.nix
|
||||
../hm_modules/bat.nix
|
||||
../hm_modules/bottom.nix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue