1
0
mirror of https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git synced 2025-09-15 09:45:58 +03:00

small changes & fixes

This commit is contained in:
xnm
2024-04-04 21:14:47 +03:00
parent e123495f64
commit efd9e945a0
7 changed files with 19 additions and 4 deletions

View File

@@ -281,7 +281,7 @@
},
"user": {
"format": "<span color='#8bd5ca'>{user}</span> (up <span color='#f5bde6'>{work_d} d</span> <span color='#8aadf4'>{work_H} h</span> <span color='#eed49f'>{work_M} min</span> <span color='#a6da95'>↑</span>)",
"format": " <span color='#8bd5ca'>{user}</span> (up <span color='#f5bde6'>{work_d} d</span> <span color='#8aadf4'>{work_H} h</span> <span color='#eed49f'>{work_M} min</span> <span color='#a6da95'>↑</span>)",
"icon": true,
},
},

View File

@@ -9,3 +9,6 @@
[gpg]
format = ssh
[commit]
gpgsign = true

View File

@@ -2,5 +2,13 @@
{
# Enable the OpenSSH daemon.
services.openssh.enable = true;
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
PermitRootLogin = "no";
AllowUsers = [ "xnm" ];
};
};
}

View File

@@ -3,7 +3,7 @@
{
environment.systemPackages = with pkgs; [
go
(python311Full.withPackages(ps: with ps; [ pygobject3 gobject-introspection pyqt6-sip]))
(python312Full.withPackages(ps: with ps; [ pygobject3 gobject-introspection pyqt6-sip]))
nodePackages_latest.nodejs
bun
lua

View File

@@ -4,7 +4,6 @@ components = [ "rust-src", "rust-analyzer", "rustc-codegen-cranelift", "miri", "
targets = [
"wasm32-unknown-unknown",
"wasm32-wasi",
"wasm32-wasi-preview1-threads",
"x86_64-pc-windows-gnu",
"x86_64-unknown-linux-gnu",
]

View File

@@ -22,6 +22,7 @@
services.tumbler.enable = true;
services.fwupd.enable = true;
services.auto-cpufreq.enable = true;
services.opengl.enable = true;
# services.udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
environment.systemPackages = with pkgs; [

View File

@@ -5,5 +5,9 @@
mold
gcc13
jdk11
dioxus-cli
surrealdb
surrealdb-migrations
surrealist
];
}