From afddd6b09803a66f5a77f0a8021757d2b7d87c75 Mon Sep 17 00:00:00 2001 From: Nichkara Date: Fri, 27 Feb 2026 17:11:08 +0100 Subject: [PATCH] Remove unneeded files --- arch_setup.sh | 19 ------------------- aur_setup.sh | 4 ---- flake.nix | 34 --------------------------------- pure_setup.sh | 52 --------------------------------------------------- 4 files changed, 109 deletions(-) delete mode 100755 arch_setup.sh delete mode 100755 aur_setup.sh delete mode 100644 flake.nix delete mode 100755 pure_setup.sh diff --git a/arch_setup.sh b/arch_setup.sh deleted file mode 100755 index e5d6dbf..0000000 --- a/arch_setup.sh +++ /dev/null @@ -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 diff --git a/aur_setup.sh b/aur_setup.sh deleted file mode 100755 index af22497..0000000 --- a/aur_setup.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -yay --noconfirm -S hyprshot -yay --noconfirm -S schildichat-desktop-bin diff --git a/flake.nix b/flake.nix deleted file mode 100644 index 302a796..0000000 --- a/flake.nix +++ /dev/null @@ -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; - } - ]; - }; - }; -} diff --git a/pure_setup.sh b/pure_setup.sh deleted file mode 100755 index 00ab651..0000000 --- a/pure_setup.sh +++ /dev/null @@ -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