mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2025-12-22 14:37:13 +01:00
meow
This commit is contained in:
parent
682f0354ae
commit
3ed9b836ee
11 changed files with 139 additions and 18 deletions
|
|
@ -10,5 +10,6 @@
|
|||
./input
|
||||
./media
|
||||
./nix.nix
|
||||
./time.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@
|
|||
services = {
|
||||
pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = false;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
jack.enable = false;
|
||||
};
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
{ ... }:
|
||||
{
|
||||
time.timeZone = "Europe/Berlin";
|
||||
i18n.extraLocaleSettings = {
|
||||
LC_LANG = "en_US.UTF-8";
|
||||
# LC_LANGUAGE = "en_DE:en_US:en_GB:de_DE";
|
||||
|
|
|
|||
|
|
@ -6,8 +6,15 @@
|
|||
programs.btop = {
|
||||
enable = true;
|
||||
settings = {
|
||||
shown_boxes = "cpu mem net proc gpu0";
|
||||
color_theme = "gruvbox_dark";
|
||||
vim_keys = true;
|
||||
proc_per_core = true;
|
||||
proc_filter_kernel = true;
|
||||
proc_aggregate = true;
|
||||
cpu_graph_upper = "total";
|
||||
cpu_graph_lower = "user";
|
||||
update_ms = 500;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
17
modules/time.nix
Normal file
17
modules/time.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.chrony = {
|
||||
enable = true;
|
||||
# enableNTS = true;
|
||||
# servers = [
|
||||
# "0.de.pool.ntp.org"
|
||||
# "1.de.pool.ntp.org"
|
||||
# "2.de.pool.ntp.org"
|
||||
# "3.de.pool.ntp.org"
|
||||
# ];
|
||||
serverOption = "iburst";
|
||||
extraFlags = [ "-s" ];
|
||||
extraConfig = "makestep 1 -1";
|
||||
};
|
||||
time.timeZone = "Europe/Berlin";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue