Compare commits

...

3 commits

Author SHA1 Message Date
Leonardo Eugênio a8543c5090 keyd: fix modifier keys (rightshift bacame leftshift) 2024-07-24 21:18:01 -03:00
Leonardo Eugênio 665dc96362 update 2024-07-24 20:16:59 -03:00
Leonardo Eugênio 0da79f1fd7 firewall: don't log refused connections 2024-07-23 18:26:33 -03:00
3 changed files with 24 additions and 9 deletions

View file

@ -176,11 +176,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1720661479, "lastModified": 1721735625,
"narHash": "sha256-nsGgA14vVn0GGiqEfomtVgviRJCuSR3UEopfP8ixW1I=", "narHash": "sha256-4T0FK0b3Q7Dd7oj79M7GhA9+YqKxxGT0iN+h8yqdP7s=",
"owner": "nix-community", "owner": "nix-community",
"repo": "disko", "repo": "disko",
"rev": "786965e1b1ed3fd2018d78399984f461e2a44689", "rev": "4698b1ef375e9c904037e0b2049aa73d39ac1b2d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -480,11 +480,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1720926593, "lastModified": 1721531260,
"narHash": "sha256-fW6e27L6qY6s+TxInwrS2EXZZfhMAlaNqT0sWS49qMA=", "narHash": "sha256-O72uxk4gYFQDwNkoBioyrR3GK9EReZmexCStBaORMW8=",
"owner": "Mic92", "owner": "Mic92",
"repo": "nix-index-database", "repo": "nix-index-database",
"rev": "5fe5b0cdf1268112dc96319388819b46dc051ef4", "rev": "b6db9fd8dc59bb2ccb403f76d16ba8bbc1d5263d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -592,11 +592,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1720823163, "lastModified": 1721548954,
"narHash": "sha256-FZ5dnrvKkln9ESdoTR8R7GKW9rNpXNZrxGsOXsbsTpE=", "narHash": "sha256-7cCC8+Tdq1+3OPyc3+gVo9dzUNkNIQfwSDJ2HSi2u3o=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "f12ee5f64c6a09995e71c9626d88c4efa983b488", "rev": "63d37ccd2d178d54e7fb691d7ec76000740ea24a",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -8,6 +8,16 @@
"main" = { "main" = {
# Some programs don't respect colemaks capslock bind, so we force it here # Some programs don't respect colemaks capslock bind, so we force it here
"capslock" = "backspace"; "capslock" = "backspace";
# keyd has incorrect defaults :/
"leftshift" = "leftshift";
"rightshift" = "rightshift";
"leftalt" = "leftalt";
"rightalt" = "rightalt";
"leftcontrol" = "leftcontrol";
"rightcontrol" = "rightcontrol";
"leftmeta" = "leftmeta";
"rightmeta" = "rightmeta";
}; };
}; };
}; };

View file

@ -9,6 +9,11 @@
# Open kde connect ports # Open kde connect ports
programs.kdeconnect.enable = true; programs.kdeconnect.enable = true;
networking.firewall = {
enable = true;
logRefusedConnections = false;
};
# Enable CUPS to print documents. # Enable CUPS to print documents.
# services.printing.enable = true; # services.printing.enable = true;