Removed old stuff

This commit is contained in:
2026-05-04 17:44:19 +02:00
parent 386829caf5
commit 78ee510d83
9094 changed files with 0 additions and 117537 deletions
@@ -1,31 +0,0 @@
{ config, pkgs, lib, flakeRoot, ... }:
let
userVideoPath = ".config/nixos_conf/wallpaperstuff/videos/myWallpaper.mp4";
in
{
home.packages = [
pkgs.mpvpaper
pkgs.mpv
];
systemd.user.services.mpvpaper-wallpaper = {
Unit = {
Description = "Video wallpaper (mpvpaper)";
After = [ "graphical-session.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
Type = "simple";
ExecStart = ''
${pkgs.mpvpaper}/bin/mpvpaper \
-p \
-o "no-audio --loop-file=inf --no-terminal --really-quiet --panscan=1.0 --keepaspect=yes" \
'*' "${userVideoPath}"
'';
Restart = "on-failure";
RestartSec = 1;
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
}
-4
View File
@@ -1,4 +0,0 @@
{ config, lib, pkgs, flakeRoot, ... }:
{
home.packages = [ pkgs.hypridle ];
}
-20
View File
@@ -1,20 +0,0 @@
{ config, lib, pkgs, flakeRoot, ... }:
{
wayland.windowManager.hyprland = {
enable = true;
settings = {
};
};
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal-hyprland
];
config.common.default = [ "gtk" ];
config.hyprland = {
"org.freedesktop.impl.portal.Screencast" = [ "hyprland" ];
"org.freedesktop.impl.portal.RemoteDesktop" = [ "hyprland" ];
};
};
}
-4
View File
@@ -1,4 +0,0 @@
{ config, lib, pkgs, flakeRoot, ... }:
{
home.packages = [ pkgs.hyprlock ];
}
-22
View File
@@ -1,22 +0,0 @@
# home/desktop/hyprshell.nix (Home-Manager module)
{ config, pkgs, lib, flakeRoot, ... }:
{
xdg.enable = true;
home.packages = [ pkgs.hyprshell ];
# Autostart (systemd user service)
systemd.user.services.hyprshell = {
Unit = {
Description = "Hyprshell (window switcher / launcher)";
PartOf = [ "graphical-session.target" ];
After = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.hyprshell}/bin/hyprshell";
Restart = "on-failure";
RestartSec = 1;
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
}
@@ -1,22 +0,0 @@
{ config, pkgs, lib, flakeRoot, ... }:
let
userConfPath = "${config.home.homeDirectory}/nixos_conf/wallpaperstuff/wallpaper.conf";
in
{
home.packages = [ pkgs.wpaperd ];
systemd.user.services.wpaperd = {
Unit = {
Description = "wpaperd wallpaper daemon";
After = [ "default.target" ];
};
Service = {
Type = "simple";
ExecStart = "${pkgs.wpaperd}/bin/wpaperd --config ${userConfPath}";
Restart = "on-failure";
RestartSec = 1;
};
Install = {
WantedBy = [ "default.target" ];
};
};
}
-18
View File
@@ -1,18 +0,0 @@
{ config, pkgs, lib, flakeRoot, inputs ? null, ... }:
let
walkerPkg =
if inputs != null && inputs ? walker
then inputs.walker.packages.${pkgs.system}.default
else pkgs.walker;
elephantPkg =
if inputs != null && inputs ? elephant
then inputs.elephant.packages.${pkgs.system}.default
else pkgs.elephant;
sessionTarget = "graphical-session.target";
in
{
xdg.enable = true;
home.packages = [ walkerPkg elephantPkg ];
systemd.user.services.elephant = { };
systemd.user.services.walker = { };
}
-4
View File
@@ -1,4 +0,0 @@
{ config, lib, pkgs, flakeRoot, ... }:
{
programs.waybar.enable = true;
}