Refactor directory structure
This commit is contained in:
@@ -3,21 +3,20 @@
|
||||
{
|
||||
imports = [ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
# ../../modules/system/desktop/hyprland.nix
|
||||
../../modules/system/desktop/plasma.nix
|
||||
# ../../modules/system/desktop/noisetorch.nix
|
||||
../../modules/system/desktop/nvidia.nix
|
||||
# ../../modules/system/programs/syncthing.nix
|
||||
# ../../modules/system/programs/thunar.nix
|
||||
# ../../modules/system/programs/steam.nix
|
||||
# ../../modules/system/utils/common.nix
|
||||
# ../../modules/system/utils/docker.nix
|
||||
# ../../modules/system/utils/firewall.nix
|
||||
#../../modules/system/utils/fprint.nix
|
||||
../../modules/system/utils/garbage-collection.nix
|
||||
../../modules/system/utils/locale.nix
|
||||
# ../../modules/system/utils/printing.nix
|
||||
../../modules/system/programs/sunshine.nix
|
||||
|
||||
# GUI
|
||||
../../modules/system/gui/plasma.nix
|
||||
../../modules/system/gui/steam.nix
|
||||
../../modules/system/gui/sunshine.nix
|
||||
|
||||
# CLI
|
||||
../../modules/system/cli/common.nix
|
||||
|
||||
# Hardware
|
||||
../../modules/system/hardware/firewall.nix
|
||||
../../modules/system/hardware/garbage-collection.nix
|
||||
../../modules/system/hardware/locale.nix
|
||||
../../modules/system/hardware/nvidia.nix
|
||||
];
|
||||
|
||||
nix.settings = {
|
||||
|
@@ -2,18 +2,11 @@
|
||||
|
||||
{
|
||||
imports = [
|
||||
# ../../modules/home/desktop/hyprland
|
||||
# ../../modules/home/programs/barrier.nix
|
||||
# ../../modules/home/programs/common.nix
|
||||
# ../../modules/home/programs/develop.nix
|
||||
../../modules/home/programs/firefox.nix
|
||||
# ../../modules/home/programs/modrinth.nix
|
||||
# ../../modules/home/programs/neovim
|
||||
# ../../modules/home/programs/git.nix
|
||||
# ../../modules/home/programs/ssh.nix
|
||||
# ../../modules/home/theme
|
||||
# ../../modules/home/theme/blueish.nix
|
||||
# ../../modules/home/utils/fonts.nix
|
||||
# GUI
|
||||
../../modules/home/gui/common
|
||||
|
||||
# CLI
|
||||
../../modules/home/cli/common
|
||||
];
|
||||
|
||||
home = {
|
||||
@@ -22,22 +15,8 @@
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# Desktop Applications
|
||||
# kdenlive
|
||||
# gthumb
|
||||
unstable.bitwarden
|
||||
unstable.prismlauncher
|
||||
# blender
|
||||
|
||||
# unstable.surrealist
|
||||
];
|
||||
|
||||
# home.sessionVariables = {
|
||||
# LIBVA_DRIVER_NAME = "nvidia";
|
||||
# XDG_SESSION_TYPE = "wayland";
|
||||
# __GLX_VENDOR_LIBRARY_NAME = "nvidia";
|
||||
# WLR_NO_HARDWARE_CURSORS = 1;
|
||||
# };
|
||||
|
||||
home.stateVersion = "24.05";
|
||||
}
|
||||
|
@@ -1,20 +1,26 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ # Include the results of the hardware scan.
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../modules/system/desktop/amd.nix
|
||||
../../modules/system/desktop/hyprland.nix
|
||||
../../modules/system/desktop/bluetooth.nix
|
||||
../../modules/system/programs/steam.nix
|
||||
../../modules/system/programs/syncthing.nix
|
||||
../../modules/system/programs/thunar.nix
|
||||
../../modules/system/utils/common.nix
|
||||
../../modules/system/utils/docker.nix
|
||||
# ../../modules/system/utils/fprint.nix
|
||||
../../modules/system/utils/garbage-collection.nix
|
||||
../../modules/system/utils/locale.nix
|
||||
../../modules/system/utils/printing.nix
|
||||
|
||||
# GUI
|
||||
../../modules/system/gui/hyprland.nix
|
||||
../../modules/system/gui/steam.nix
|
||||
../../modules/system/gui/thunar.nix
|
||||
|
||||
# CLI
|
||||
../../modules/system/cli/common.nix
|
||||
../../modules/system/cli/docker.nix
|
||||
|
||||
# Hardware
|
||||
../../modules/system/hardware/amd.nix
|
||||
../../modules/system/hardware/bluetooth.nix
|
||||
../../modules/system/hardware/firewall.nix
|
||||
../../modules/system/hardware/garbage-collection.nix
|
||||
../../modules/system/hardware/laptop.nix
|
||||
../../modules/system/hardware/locale.nix
|
||||
../../modules/system/hardware/printing.nix
|
||||
];
|
||||
|
||||
nix.settings = {
|
||||
@@ -41,8 +47,6 @@
|
||||
extraGroups = [ "networkmanager" "wheel" "dialout" ];
|
||||
};
|
||||
|
||||
services.printing.enable = true;
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
|
@@ -2,17 +2,15 @@
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../modules/home/desktop/hyprland
|
||||
# ../../modules/home/programs/barrier.nix
|
||||
../../modules/home/programs/common.nix
|
||||
../../modules/home/programs/firefox.nix
|
||||
../../modules/home/programs/git.nix
|
||||
../../modules/home/programs/modrinth.nix
|
||||
../../modules/home/programs/neovim
|
||||
../../modules/home/programs/ssh.nix
|
||||
../../modules/home/theme
|
||||
../../modules/home/theme/blueish.nix
|
||||
../../modules/home/utils/fonts.nix
|
||||
# GUI
|
||||
../../modules/home/gui/common
|
||||
../../modules/home/gui/hyprland
|
||||
../../modules/home/gui/nextcloud.nix
|
||||
../../modules/home/gui/theming.nix
|
||||
|
||||
# CLI
|
||||
../../modules/home/cli/common
|
||||
../../modules/home/cli/ssh.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
@@ -23,14 +21,21 @@
|
||||
home.packages = with pkgs; [
|
||||
# Desktop Applications
|
||||
kdenlive
|
||||
gthumb
|
||||
unstable.arduino-ide
|
||||
unstable.prismlauncher
|
||||
unstable.joplin-desktop
|
||||
|
||||
unstable.moonlight-qt
|
||||
|
||||
unstable.prusa-slicer
|
||||
signal-desktop
|
||||
unstable.vesktop
|
||||
|
||||
# Office
|
||||
libreoffice
|
||||
onlyoffice-bin
|
||||
|
||||
# Image editing
|
||||
gimp
|
||||
inkscape
|
||||
|
||||
];
|
||||
|
||||
home.stateVersion = "24.05";
|
||||
|
Reference in New Issue
Block a user