Switch to 4 space indentation

This commit is contained in:
SebastianStork 2024-03-17 13:15:01 +01:00
parent a4cc33577c
commit d7aed49725
32 changed files with 796 additions and 783 deletions

View file

@ -1,14 +1,14 @@
{config, ...}: {
imports = [../default.nix];
imports = [../default.nix];
sops.secrets."password/seb".neededForUsers = true;
sops.secrets."password/seb".neededForUsers = true;
users.users.seb = {
isNormalUser = true;
description = "Sebastian Stork";
hashedPasswordFile = config.sops.secrets."password/seb".path;
extraGroups = ["wheel" "networkmanager" "libvirtd"];
};
users.users.seb = {
isNormalUser = true;
description = "Sebastian Stork";
hashedPasswordFile = config.sops.secrets."password/seb".path;
extraGroups = ["wheel" "networkmanager" "libvirtd"];
};
home-manager.users.seb = import ./home.nix;
home-manager.users.seb = import ./home.nix;
}

View file

@ -1,56 +1,56 @@
{pkgs, ...}: {
myConfig = {
qtile.enable = true;
vscode.enable = true;
shell = {
bash.enable = true;
starship.enable = true;
nixAliases.enable = true;
improvedCommands.enable = true;
direnv.enable = true;
myConfig = {
qtile.enable = true;
vscode.enable = true;
shell = {
bash.enable = true;
starship.enable = true;
nixAliases.enable = true;
improvedCommands.enable = true;
direnv.enable = true;
};
theming.enable = true;
ssh-client.enable = true;
git.enable = true;
neovim.enable = true;
kitty.enable = true;
};
theming.enable = true;
ssh-client.enable = true;
git.enable = true;
neovim.enable = true;
kitty.enable = true;
};
services.clipmenu = {
enable = true;
launcher = "rofi";
};
services.clipmenu = {
enable = true;
launcher = "rofi";
};
programs.btop.enable = true;
programs.btop.enable = true;
home.packages = with pkgs; [
# CLI
fastfetch
home.packages = with pkgs; [
# CLI
fastfetch
# GUI
notepadqq
brave
spotify
cinnamon.nemo-with-extensions
discord
flameshot
jetbrains.idea-community
vlc
obs-studio
libsForQt5.kdenlive
gimp
libreoffice
hunspell
hunspellDicts.de_DE
hunspellDicts.en_US
steam
networkmanagerapplet
# GUI
notepadqq
brave
spotify
cinnamon.nemo-with-extensions
discord
flameshot
jetbrains.idea-community
vlc
obs-studio
libsForQt5.kdenlive
gimp
libreoffice
hunspell
hunspellDicts.de_DE
hunspellDicts.en_US
steam
networkmanagerapplet
# Fonts
(nerdfonts.override {fonts = ["JetBrainsMono"];})
corefonts
roboto
open-sans
ubuntu_font_family
];
# Fonts
(nerdfonts.override {fonts = ["JetBrainsMono"];})
corefonts
roboto
open-sans
ubuntu_font_family
];
}