This commit is contained in:
RingOfStorms (Josh) 2024-05-08 00:07:25 -05:00
parent 5fd3d3a40a
commit 7a46a2c96b
6 changed files with 13 additions and 6 deletions

6
flake.lock generated
View file

@ -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": {

View file

@ -33,7 +33,6 @@
user = {
username = "josh";
git = {
email = "ringofstorms@gmail.com";
name = "RingOfStorms (Joshua Bell)";
};

View file

@ -0,0 +1,5 @@
{ settings, ... }:
{
virtualisation.docker.enable = true;
users.extraGroups.docker.members = [ settings.user.username ];
}

View file

@ -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")

View file

@ -53,6 +53,9 @@
# direnv things
"/.direnv"
# local only files
"*.local"
];
};
}

View file

@ -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}"