Remove unneeded files

This commit is contained in:
2026-02-27 17:11:08 +01:00
parent 8408368c2d
commit afddd6b098
4 changed files with 0 additions and 109 deletions

View File

@@ -1,19 +0,0 @@
#!/bin/bash
pacman --noconfirm -Syyu
pacman --noconfirm -S git \
networkmanager \
blueman \
hyprland \
wofi \
waybar \
grim \
swaync \
evolution \
nextcloud \
firefox \
pamixer \
swaylock \
hyprpaper \
lxsession

View File

@@ -1,4 +0,0 @@
#!/bin/bash
yay --noconfirm -S hyprshot
yay --noconfirm -S schildichat-desktop-bin

View File

@@ -1,34 +0,0 @@
{
description = "Nichkaras Hyprland desktop";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
in {
homeConfigurations.user = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { inherit system; };
modules = [
{
home.username = "nichkara";
home.homeDirectory = "/home/nichkara";
# Programme
programs.hyprland.enable = true;
programs.waybar.enable = true;
programs.kitty.enable = true;
# Config-Dateien einbinden
xdg.configFile."hypr/hyprland.conf".source = ./hyprland.conf;
xdg.configFile."waybar/config".source = ../.config/waybar/config;
xdg.configFile."kitty/kitty.conf".source = ../.config/kitty/kitty.conf;
}
];
};
};
}

View File

@@ -1,52 +0,0 @@
#!bash
set -x
cd ~/.config/
if [ ! -d "hypr" ]; then
git clone git@git.nichkara.eu:dotfiles/hypr
else
cd hypr
git pull
cd ..
fi
if [ ! -d "waybar" ]; then
git clone git@git.nichkara.eu:dotfiles/waybar
else
cd hypr
git pull
cd ..
fi
if [ ! -d "nvim" ]; then
git clone git@git.nichkara.eu:nichkara/nvim
else
cd nvim
git pull
cd ..
fi
if [ ! -d "wofi" ]; then
git clone git@git.nichkara.eu:dotfiles/wofi
else
cd wofi
git pull
cd ..
fi
if [ ! -d "kitty" ]; then
git clone git@git.nichkara.eu:dotfiles/kitty
else
cd kitty
git pull
cd ..
fi
if [ ! -d "evolution" ]; then
git clone git@git.nichkara.eu:dotfiles/evolution
else
cd evolution
git pull
cd ..
fi