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 = {
|
||||
modifier = "Mod4";
|
||||
bars = [ ];
|
||||
#: Keybindings {{{
|
||||
keybindings =
|
||||
let
|
||||
|
|
|
@ -94,7 +94,6 @@
|
|||
eza
|
||||
bat
|
||||
swaynotificationcenter
|
||||
pop-icon-theme
|
||||
];
|
||||
|
||||
modules.media.enableAll = true;
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
./obsidian-livesync
|
||||
./headscale.nix
|
||||
../../modules/nix
|
||||
../../modules/users/ny.nix
|
||||
];
|
||||
|
||||
age.secrets = {
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
[migrations]
|
||||
ALLOWED_DOMAINS=github.com,*.github.com.
|
||||
ALLOWED_DOMAINS=github.com,*.github.com
|
||||
|
||||
[server]
|
||||
SSH_PORT=222
|
||||
|
|
|
@ -2,10 +2,12 @@
|
|||
{
|
||||
# Containers
|
||||
virtualisation.oci-containers.containers."forgejo" = {
|
||||
image = "codeberg.org/forgejo/forgejo:7";
|
||||
image = "codeberg.org/forgejo/forgejo:8";
|
||||
environment = {
|
||||
"USER_GID" = "1000";
|
||||
"USER_UID" = "1000";
|
||||
FORGEJO__migrations__ALLOWED_DOMAINS = true;
|
||||
FORGEJO__server__SSH_PORT = 222;
|
||||
};
|
||||
volumes = [
|
||||
#"/etc/localtime:/etc/localtime:ro"
|
||||
|
|
|
@ -79,7 +79,7 @@ mkIf config.services.headscale.enable {
|
|||
};
|
||||
|
||||
services.headscale.settings.acl_policy_path = pkgs.writeTextFile {
|
||||
name = "headscale-acl.json";
|
||||
name = "headscale-acl.hujson";
|
||||
text = builtins.toJSON {
|
||||
acls = [
|
||||
(mkAcl [ "tag:client" ] [ "tag:client:*" ]) # client -> client
|
||||
|
|
|
@ -1,7 +1,16 @@
|
|||
{ ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
qt = {
|
||||
enable = true;
|
||||
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