fixed EVEN MORE splling errors

This commit is contained in:
vali 2024-04-10 19:31:40 +02:00
commit 94c42d8b13
5 changed files with 7 additions and 5 deletions

View file

@ -20,7 +20,7 @@
# vesktop.enable = true; # vesktop.enable = true;
btop.enable = true; btop.enable = true;
mpv.enable = true; mpv.enable = true;
neovim.enable = true; #neovim.enable = true;
git = { git = {
enable = true; enable = true;
userName = "vali"; userName = "vali";
@ -50,7 +50,7 @@
name = "Catppuccin-Mocha-Standard-Green-Dark"; name = "Catppuccin-Mocha-Standard-Green-Dark";
variant = "mocha"; variant = "mocha";
accentColour = "green"; accentColour = "green";
iconTtheme = { iconTheme = {
name = "Papirus-Dark"; name = "Papirus-Dark";
package = pkgs.catppuccin-papirus-folders; package = pkgs.catppuccin-papirus-folders;
}; };

View file

@ -6,6 +6,7 @@ in {
home.packages = let home.packages = let
in with pkgs; [ in with pkgs; [
pfetch
git git
keepassxc keepassxc
eza ripgrep eza ripgrep
@ -52,6 +53,7 @@ in {
httpie httpie
sherlock sherlock
strawberry strawberry
neovim
]; ];
}; };
} }

View file

@ -19,7 +19,7 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
programs.zsh.enable = true; programs.zsh.enable = true;
user.users.${username}.shell = pkgs.zsh; users.users.${username}.shell = pkgs.zsh;
environment = { environment = {
shells = [ pkgs.zsh ]; shells = [ pkgs.zsh ];
pathsToLink = [ "/share/zsh" ]; pathsToLink = [ "/share/zsh" ];

View file

@ -2,7 +2,7 @@
with lib; let with lib; let
cfg = config.myOptions.services.pipewire; cfg = config.myOptions.services.pipewire;
in { in {
options.myOptions.services.enable = mkEnableOption "pipewire"; options.myOptions.services.pipewire.enable = mkEnableOption "pipewire";
config = mkIf cfg.enable { config = mkIf cfg.enable {
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;

View file

@ -11,5 +11,5 @@ networking = {
enable = true; enable = true;
fallbackDns = ["9.9.9.9"]; fallbackDns = ["9.9.9.9"];
}; };
user.users.config.myOptions.other.system.username.extraGroups = [ "networkmanager" ]; users.users.config.myOptions.other.system.username.extraGroups = [ "networkmanager" ];
} }