Tuning/refactoring/etc
This commit is contained in:
parent
cdfcbf76e3
commit
73482423ee
28 changed files with 189 additions and 211 deletions
|
|
@ -1,10 +1,5 @@
|
|||
{ config, pkgs, lib, inputs, osConfig ? null, ... }:
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
osConfig,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./aerc.nix
|
||||
./bash.nix
|
||||
|
|
@ -29,6 +24,7 @@
|
|||
# ./tui.nix
|
||||
./vifm.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
inputs.naviterm.packages.${pkgs.stdenv.hostPlatform.system}.default
|
||||
bc
|
||||
|
|
@ -111,7 +107,7 @@
|
|||
syncthing = {
|
||||
enable = true;
|
||||
guiAddress =
|
||||
if osConfig.variables ? address
|
||||
if osConfig != null && osConfig.variables ? address
|
||||
then "${osConfig.variables.address}:8384"
|
||||
else "127.0.0.1:8384";
|
||||
overrideDevices = false;
|
||||
|
|
@ -133,7 +129,7 @@
|
|||
# enableBashIntegration = true;
|
||||
# keys = "id_aur id_dsa id_ed25519 git C7E41C9F79C846984163693FCCD8E76F07EA701B";
|
||||
# };
|
||||
home.file.".links/links.cfg".source = files/links.cfg;
|
||||
home.file.".links/links.cfg".source = ./files/links.cfg;
|
||||
xdg.configFile."nix/nix.conf".text = ''
|
||||
extra-experimental-features = flakes nix-command
|
||||
'';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue