ricing
This commit is contained in:
parent
8413ab2e0f
commit
afa692e17d
5 changed files with 56 additions and 32 deletions
|
@ -1,4 +1,9 @@
|
|||
{ lib, inputs, pkgs, ... }:
|
||||
{
|
||||
lib,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
./users
|
||||
|
@ -75,21 +80,23 @@
|
|||
'';
|
||||
};
|
||||
|
||||
# Limit the systemd journal to 100 MB of disk or the
|
||||
# last 7 days of logs, whichever happens first.
|
||||
services.journald.extraConfig = ''
|
||||
SystemMaxUse=100M
|
||||
MaxFileSec=7day
|
||||
'';
|
||||
services = {
|
||||
# Limit the systemd journal to 100 MB of disk or the
|
||||
# last 7 days of logs, whichever happens first.
|
||||
journald.extraConfig = ''
|
||||
SystemMaxUse=100M
|
||||
MaxFileSec=7day
|
||||
'';
|
||||
|
||||
services.dbus.implementation = "broker";
|
||||
dbus.implementation = "broker";
|
||||
|
||||
# Enable SSH
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PasswordAuthentication = lib.mkDefault false;
|
||||
PermitRootLogin = lib.mkDefault "no";
|
||||
# Enable SSH
|
||||
openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PasswordAuthentication = lib.mkDefault false;
|
||||
PermitRootLogin = lib.mkDefault "no";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -112,6 +112,7 @@ in
|
|||
element-desktop
|
||||
firefox
|
||||
discord
|
||||
obsidian
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
@ -62,7 +62,10 @@ with lib;
|
|||
plugins = {
|
||||
nvim-surround.enable = true;
|
||||
dap.enable = true;
|
||||
image.enable = true;
|
||||
image = {
|
||||
enable = true;
|
||||
backend = "kitty";
|
||||
};
|
||||
web-devicons.enable = true;
|
||||
bufferline.enable = true;
|
||||
nix.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue