chore: small improvements
This commit is contained in:
parent
ac274da95f
commit
59f5684ea0
7 changed files with 20 additions and 5 deletions
|
@ -47,6 +47,7 @@ lib.mkIf osConfig.programs.sway.enable {
|
||||||
'';
|
'';
|
||||||
config = {
|
config = {
|
||||||
modifier = "Mod4";
|
modifier = "Mod4";
|
||||||
|
bars = [ ];
|
||||||
#: Keybindings {{{
|
#: Keybindings {{{
|
||||||
keybindings =
|
keybindings =
|
||||||
let
|
let
|
||||||
|
|
|
@ -94,7 +94,6 @@
|
||||||
eza
|
eza
|
||||||
bat
|
bat
|
||||||
swaynotificationcenter
|
swaynotificationcenter
|
||||||
pop-icon-theme
|
|
||||||
];
|
];
|
||||||
|
|
||||||
modules.media.enableAll = true;
|
modules.media.enableAll = true;
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
./obsidian-livesync
|
./obsidian-livesync
|
||||||
./headscale.nix
|
./headscale.nix
|
||||||
../../modules/nix
|
../../modules/nix
|
||||||
|
../../modules/users/ny.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
age.secrets = {
|
age.secrets = {
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
[migrations]
|
[migrations]
|
||||||
ALLOWED_DOMAINS=github.com,*.github.com.
|
ALLOWED_DOMAINS=github.com,*.github.com
|
||||||
|
|
||||||
|
[server]
|
||||||
|
SSH_PORT=222
|
||||||
|
|
|
@ -2,10 +2,12 @@
|
||||||
{
|
{
|
||||||
# Containers
|
# Containers
|
||||||
virtualisation.oci-containers.containers."forgejo" = {
|
virtualisation.oci-containers.containers."forgejo" = {
|
||||||
image = "codeberg.org/forgejo/forgejo:7";
|
image = "codeberg.org/forgejo/forgejo:8";
|
||||||
environment = {
|
environment = {
|
||||||
"USER_GID" = "1000";
|
"USER_GID" = "1000";
|
||||||
"USER_UID" = "1000";
|
"USER_UID" = "1000";
|
||||||
|
FORGEJO__migrations__ALLOWED_DOMAINS = true;
|
||||||
|
FORGEJO__server__SSH_PORT = 222;
|
||||||
};
|
};
|
||||||
volumes = [
|
volumes = [
|
||||||
#"/etc/localtime:/etc/localtime:ro"
|
#"/etc/localtime:/etc/localtime:ro"
|
||||||
|
|
|
@ -79,7 +79,7 @@ mkIf config.services.headscale.enable {
|
||||||
};
|
};
|
||||||
|
|
||||||
services.headscale.settings.acl_policy_path = pkgs.writeTextFile {
|
services.headscale.settings.acl_policy_path = pkgs.writeTextFile {
|
||||||
name = "headscale-acl.json";
|
name = "headscale-acl.hujson";
|
||||||
text = builtins.toJSON {
|
text = builtins.toJSON {
|
||||||
acls = [
|
acls = [
|
||||||
(mkAcl [ "tag:client" ] [ "tag:client:*" ]) # client -> client
|
(mkAcl [ "tag:client" ] [ "tag:client:*" ]) # client -> client
|
||||||
|
|
|
@ -1,7 +1,16 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
qt = {
|
qt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
platformTheme = "gtk2";
|
platformTheme = "gtk2";
|
||||||
|
#platformTheme = "qt5ct";
|
||||||
|
#style = "kvantum";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
vimix-icon-theme
|
||||||
|
pop-icon-theme
|
||||||
|
catppuccin-papirus-folders
|
||||||
|
catppuccin-kvantum
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue