updates
This commit is contained in:
parent
5fd3d3a40a
commit
7a46a2c96b
6 changed files with 13 additions and 6 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -230,11 +230,11 @@
|
|||
"nvim_plugin-declancm/cinnamon.nvim": "nvim_plugin-declancm/cinnamon.nvim"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1715021116,
|
||||
"narHash": "sha256-90rB0FN9XodUTSw8fHJSGm8qbqkQOOryQUHt7v53KPQ=",
|
||||
"lastModified": 1715117107,
|
||||
"narHash": "sha256-HQMygE6TtrS4w2YPSyRrRcBpGoCwdniXerh4c415Twk=",
|
||||
"owner": "RingOfStorms",
|
||||
"repo": "nvim",
|
||||
"rev": "d3212044572caeaaf969c06c66f779de96ef37ce",
|
||||
"rev": "dd1d3dba564adaa1cdfd1d4b29f933a971a2b70e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
user = {
|
||||
username = "josh";
|
||||
git = {
|
||||
|
||||
email = "ringofstorms@gmail.com";
|
||||
name = "RingOfStorms (Joshua Bell)";
|
||||
};
|
||||
|
|
5
hosts/_common/components/docker.nix
Normal file
5
hosts/_common/components/docker.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ settings, ... }:
|
||||
{
|
||||
virtualisation.docker.enable = true;
|
||||
users.extraGroups.docker.members = [ settings.user.username ];
|
||||
}
|
|
@ -2,7 +2,6 @@
|
|||
{
|
||||
imports =
|
||||
[
|
||||
# TODO revisit
|
||||
(settings.hostsDir + "/_common/components/neovim.nix")
|
||||
# Common components this machine uses
|
||||
(settings.hostsDir + "/_common/components/systemd_boot.nix")
|
||||
|
@ -11,6 +10,7 @@
|
|||
(settings.hostsDir + "/_common/components/font_jetbrainsmono.nix")
|
||||
(settings.hostsDir + "/_common/components/home_manager.nix")
|
||||
(settings.hostsDir + "/_common/components/gnome_xorg.nix")
|
||||
(settings.hostsDir + "/_common/components/docker.nix")
|
||||
# Users this machine has
|
||||
(settings.usersDir + "/root/configuration.nix")
|
||||
(settings.usersDir + "/josh/configuration.nix")
|
||||
|
|
|
@ -53,6 +53,9 @@
|
|||
|
||||
# direnv things
|
||||
"/.direnv"
|
||||
|
||||
# local only files
|
||||
"*.local"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ bind C-Space send-prefix
|
|||
bind -r p previous-window
|
||||
bind -r n next-window
|
||||
bind -r & kill-window
|
||||
bind -r c new-window
|
||||
bind -r c new-window -c "#{pane_current_path}"
|
||||
bind ',' command-prompt "rename-window %%"
|
||||
# Defaults are % and " which is weird and I cannot seem to remember them so using my normal | and \
|
||||
bind -r "\\" split-window -v -c "#{pane_current_path}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue