Compare commits
44
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
37401377a7 | ||
|
|
2536d9e55e | ||
|
|
fc9377a34a | ||
|
|
1098e43b9d | ||
|
|
6e81f19db5 | ||
|
|
45b1568950 | ||
|
|
dbae7fe154 | ||
|
|
4cd20d172a | ||
|
|
305077a0eb | ||
|
|
2997243d4b | ||
|
|
bc94109e4b | ||
|
|
38ceaa8a27 | ||
|
|
cd95a95037 | ||
|
|
2dcc44ae09 | ||
|
|
38906891d9 | ||
|
|
286fe8bbbe | ||
|
|
aad0b8844c | ||
|
|
729ab0586e | ||
|
|
a96f334dc6 | ||
|
|
94cbd77a07 | ||
|
|
32ab48a127 | ||
|
|
0bf525f993 | ||
|
|
115c7fc7f6 | ||
|
|
bc1832121f | ||
|
|
39890e7cc4 | ||
|
|
1ffd03dd8e | ||
|
|
f89b871952 | ||
|
|
334f3c67e1 | ||
|
|
fd1e631a2a | ||
|
|
915dc605fa | ||
|
|
73bb186ba2 | ||
|
|
fdc5208c9e | ||
|
|
dd3d3fbfcc | ||
|
|
2c6ec8f4f7 | ||
|
|
001f609e80 | ||
|
|
05ea7b1d4c | ||
|
|
350e7a49ce | ||
|
|
14a06588b6 | ||
|
|
da3e3d5f1b | ||
|
|
5e08f131c7 | ||
|
|
544f47abd0 | ||
|
|
af20072513 | ||
|
|
8759d71e1f | ||
|
|
3cc888b2a3 |
Generated
+815
-169
File diff suppressed because it is too large
Load Diff
@@ -25,6 +25,11 @@
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
vortix = {
|
||||
url = "github:Harry-kp/vortix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-26.05";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
@@ -1,10 +1,16 @@
|
||||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
programs.opencode = {
|
||||
enable = true;
|
||||
package = pkgs.unstable.opencode;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
inputs.vortix.packages.${pkgs.system}.default # tui for wireguard
|
||||
|
||||
worktrunk # interface for git worktrees
|
||||
|
||||
watchexec # Run command when any file in current dir changes
|
||||
|
||||
@@ -32,6 +32,9 @@
|
||||
|
||||
# networking.firewall.checkReversePath = false; # Makes wg interface with all ips work
|
||||
|
||||
programs.ausweisapp.enable = true;
|
||||
programs.ausweisapp.openFirewall = true; # for pairing with smartphone
|
||||
|
||||
modules = {
|
||||
syncthing = {
|
||||
enable = true;
|
||||
|
||||
@@ -36,6 +36,16 @@
|
||||
# Not using the drivers leads to way better results
|
||||
# services.xserver.videoDrivers = [ "nvidia" ];
|
||||
|
||||
programs.ausweisapp.enable = true;
|
||||
programs.ausweisapp.openFirewall = true; # for pairing with smartphone
|
||||
|
||||
modules = {
|
||||
syncthing = {
|
||||
enable = true;
|
||||
overrideSettings = false;
|
||||
};
|
||||
};
|
||||
|
||||
networking.networkmanager.insertNameservers = ["192.168.3.252"];
|
||||
|
||||
programs.kdeconnect.enable = true;
|
||||
|
||||
Reference in New Issue
Block a user