chore: fix unnecessary and not available pkgs, cleaning
This commit is contained in:
parent
c6594bcbff
commit
2585a86dc9
25 changed files with 703 additions and 462 deletions
|
|
@ -1,3 +1,10 @@
|
|||
{ config, pkgs, lib, ... }: {
|
||||
imports = [ ../../home/rsydn/base.nix ../../home/rsydn/shell/fish.nix ];
|
||||
# Minimal CLI-only Home Manager configuration
|
||||
# Used for servers, VMs, and headless systems
|
||||
# Desktop configs are handled directly in nixos/desktops/* modules
|
||||
|
||||
imports = [
|
||||
../../home/rsydn/base.nix # Base CLI tools (git, tmux, etc.)
|
||||
../../home/rsydn/shell/fish.nix # Shell configuration
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
{ ... }: {
|
||||
# Desktop user configuration (for Hyprland/Niri setups)
|
||||
|
||||
imports = [
|
||||
# Base CLI tools
|
||||
../../home/rsydn/base.nix
|
||||
|
||||
# Desktop additions
|
||||
../../home/rsydn/desktop/base.nix
|
||||
../../home/rsydn/desktop/apps/browsers.nix
|
||||
../../home/rsydn/desktop/apps/terminals.nix
|
||||
|
||||
# Choose your compositor
|
||||
../../home/rsydn/desktop/wayland
|
||||
# Enable specific compositor in wayland/default.nix
|
||||
|
||||
# Add theme when ready
|
||||
# ../../home/rsydn/desktop/themes/catppuccin.nix
|
||||
];
|
||||
|
||||
# Override options here
|
||||
# programs.kitty.enable = true;
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
# Gaming user configuration (for KDE Plasma)
|
||||
|
||||
imports = [
|
||||
# Base CLI tools
|
||||
../../home/rsydn/base.nix
|
||||
|
||||
# Desktop base
|
||||
../../home/rsydn/desktop/base.nix
|
||||
../../home/rsydn/desktop/apps/browsers.nix
|
||||
];
|
||||
|
||||
# Gaming-specific user packages
|
||||
home.packages = with pkgs;
|
||||
[
|
||||
# Communication
|
||||
# discord
|
||||
# teamspeak_client
|
||||
|
||||
# Streaming/Recording
|
||||
# obs-studio
|
||||
|
||||
# Media
|
||||
# spotify
|
||||
];
|
||||
|
||||
# KDE-specific settings (optional)
|
||||
# programs.plasma = {
|
||||
# enable = true;
|
||||
# workspace.theme = "breeze-dark";
|
||||
# };
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue