some misc stuff
This commit is contained in:
parent
9dd19eb429
commit
d3ebc491c1
|
@ -26,7 +26,6 @@ things to do
|
|||
------------
|
||||
|
||||
- integrate `disko` and `sops-nix` into the setup
|
||||
- switch from gitea to cgit
|
||||
- establish backup infrastructure for `netbox`
|
||||
- move gmail-mail-bridge into mail-sync repo
|
||||
* (perhaps figure out how to produce a flake for it)
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
./hardware-configuration.nix
|
||||
../../modules/ssh-phone-home.nix
|
||||
../../modules/bootstrap.nix
|
||||
../../modules/hosts.nix
|
||||
../../modules/common.nix
|
||||
];
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
./hardware-configuration.nix
|
||||
./nvidia.nix
|
||||
../../modules/ssh-phone-home.nix
|
||||
../../modules/hosts.nix
|
||||
../../modules/bootstrap.nix
|
||||
../../modules/common.nix
|
||||
../../modules/x11.nix
|
||||
|
@ -24,6 +25,7 @@
|
|||
vscodium
|
||||
thunderbird
|
||||
libreoffice
|
||||
texliveMedium
|
||||
];
|
||||
|
||||
services.hardware.bolt.enable = true; # thunderbolt support
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../modules/bootstrap.nix
|
||||
../../modules/hosts.nix
|
||||
../../modules/common.nix
|
||||
../../modules/x11.nix
|
||||
../../modules/discord.nix
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
../../modules/bootstrap.nix
|
||||
../../modules/common.nix
|
||||
../../modules/x11.nix
|
||||
../../modules/hosts.nix
|
||||
../../modules/tlp.nix
|
||||
../../modules/media.nix
|
||||
../../modules/anki.nix
|
||||
|
|
|
@ -146,7 +146,7 @@ local packer = require('packer').startup(function(use)
|
|||
require('packer').sync()
|
||||
end
|
||||
end);
|
||||
-- }}}
|
||||
-- -- }}}
|
||||
|
||||
nnoremap('<leader>ff', function()
|
||||
require('telescope.builtin').find_files()
|
||||
|
@ -171,6 +171,12 @@ luasnip.add_snippets("tex", {
|
|||
luasnip.text_node({ "", "\\end{" }), ls_extras.rep(1), luasnip.text_node("}")
|
||||
})
|
||||
})
|
||||
-- }}}
|
||||
|
||||
return packer
|
||||
luasnip.add_snippets("tex", {
|
||||
luasnip.snippet("desc", {
|
||||
luasnip.text_node({ "\\begin{description}", "\t\\item "}),
|
||||
luasnip.insert_node(1),
|
||||
luasnip.text_node({ "", "\\end{description}" }),
|
||||
})
|
||||
})
|
||||
-- }}}
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{ lib, config, pkgs, home, ... }:
|
||||
|
||||
{
|
||||
home.file = {
|
||||
".config/nws" = {
|
||||
text = ''KOHX'';
|
||||
};
|
||||
};
|
||||
}
|
|
@ -18,6 +18,7 @@
|
|||
./neomutt
|
||||
./msmtp
|
||||
./rbw
|
||||
./nws
|
||||
|
||||
./x11-progs.nix
|
||||
./tty.nix
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
{ lib, config, pkgs, inputs, ...}:
|
||||
|
||||
{
|
||||
networking.hosts = {
|
||||
"192.168.1.120" = [ "x230t" ];
|
||||
"192.168.1.52" = [ "mlg" ];
|
||||
"192.168.1.100" = [ "mainsail" ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue