Remove unneeded files
This commit is contained in:
@@ -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
|
||||
@@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
yay --noconfirm -S hyprshot
|
||||
yay --noconfirm -S schildichat-desktop-bin
|
||||
34
flake.nix
34
flake.nix
@@ -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;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user