Enable syncthing in home-manager

This commit is contained in:
Gabriel Simmer 2023-09-09 22:53:50 +01:00
parent 0448f7e125
commit d8057c6020
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ
4 changed files with 21 additions and 10 deletions

View file

@ -117,11 +117,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1693972774, "lastModified": 1694134858,
"narHash": "sha256-Dt9UZs0/DaIex598quYRYFuGabUbvFdNrHuvGc6HjBc=", "narHash": "sha256-fG/ESauOGmiojKlpJG8gB62dJa5Wd+ZIuiDMKK/HD3g=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "b22d7bab30076bbb73744867d6c5bf7d6380570c", "rev": "19c6a4081b14443420358262f8416149bd79561a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -218,11 +218,11 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1694032533, "lastModified": 1694062546,
"narHash": "sha256-I8cfCV/4JNJJ8KHOTxTU1EphKT8ARSb4s9pq99prYV0=", "narHash": "sha256-PiGI4f2BGnZcedP6slLjCLGLRLXPa9+ogGGgVPfGxys=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "efd23a1c9ae8c574e2ca923c2b2dc336797f4cc4", "rev": "b200e0df08f80c32974a6108ce431d8a8a5e6547",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -5,8 +5,10 @@
terranix.url = "github:terranix/terranix"; terranix.url = "github:terranix/terranix";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
nixinate.url = "github:matthewcroughan/nixinate"; nixinate.url = "github:matthewcroughan/nixinate";
home-manager.url = "github:nix-community/home-manager"; home-manager = {
home-manager.inputs.nixpkgs.follows = "nixpkgs"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-generators = { nixos-generators = {
url = "github:nix-community/nixos-generators"; url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";

View file

@ -20,6 +20,10 @@
homeDirectory = "/home/gsimmer"; homeDirectory = "/home/gsimmer";
}; };
services.syncthing = {
enable = true;
};
programs = { programs = {
bash.enable = false; bash.enable = false;
fish = { fish = {
@ -531,7 +535,7 @@ $env.config = {
]; ];
}; };
exa = { eza = {
enable = true; enable = true;
enableAliases = true; enableAliases = true;
}; };

View file

@ -52,6 +52,11 @@ end
} }
]; ];
}; };
services.syncthing = {
enable = true;
extraOptions = [ "--gui-address=100.116.48.47:8384" ];
};
programs.direnv = { programs.direnv = {
enable = true; enable = true;
@ -68,7 +73,7 @@ end
]; ];
}; };
programs.exa = { programs.eza = {
enable = true; enable = true;
enableAliases = true; enableAliases = true;
}; };