From 8f12f2ac8ac6a265a6b25db8c1a5a162924b00fc Mon Sep 17 00:00:00 2001 From: ozpv <39195175+ozpv@users.noreply.github.com> Date: Sun, 12 Jan 2025 04:09:37 -0600 Subject: update --- apps/nixvim.nix | 3 ++- configuration.nix | 11 ++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/apps/nixvim.nix b/apps/nixvim.nix index f5655bb..7cffead 100644 --- a/apps/nixvim.nix +++ b/apps/nixvim.nix @@ -129,11 +129,12 @@ end"; colorschemes.catppuccin = { enable = true; settings = { - flavor = "mocha"; + flavour = "latte"; integrations = { cmp = true; treesitter = true; }; + term_colors = true; }; }; diff --git a/configuration.nix b/configuration.nix index 440b768..564e8fa 100644 --- a/configuration.nix +++ b/configuration.nix @@ -136,7 +136,7 @@ users.users.ozpv = { isNormalUser = true; description = "ozpv"; - extraGroups = [ "networkmanager" "wheel" "libvirtd" ]; + extraGroups = [ "networkmanager" "wheel" "libvirtd" "docker" ]; packages = with pkgs; []; shell = pkgs.zsh; }; @@ -153,11 +153,20 @@ # Allow unfree packages nixpkgs.config.allowUnfree = true; + # docker + virtualisation.docker.enable = true; + + virtualisation.docker.rootless = { + enable = true; + setSocketVariable = true; + }; + # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ libinput-gestures brightnessctl + discord vim (st.overrideAttrs { src = fetchGit { -- cgit v1.2.3