nix: cleaned up

This commit is contained in:
biscuit
2025-05-15 13:50:58 -05:00
parent 5ffe2fe09f
commit 64237058a2
6 changed files with 3 additions and 82 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{ ... }: {
imports = [
../packages/firefox/default.nix
../system/firefox/default.nix
];
}
+1 -1
View File
@@ -3,7 +3,7 @@
imports = [
../packages/hyprland/default.nix
../packages/waybar/default.nix
../packages/hyprpanel/default.nix
../packages/ags/default.nix
../packages/astal/default.nix
];
}
-1
View File
@@ -3,7 +3,6 @@
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../modules/system.nix
../packages/astal/default.nix
];
# Bootloader.
+1 -7
View File
@@ -1,11 +1,5 @@
{ pkgs, ... }: {
# home.packages = [
# pkgs.hyprland
# ];
# programs.hyprland = {
# enable = true;
# };
hyprland.enable = true;
home.file.".config/hypr/hyprland.conf" = {
source = builtins.toPath ./hyprland.conf;
-72
View File
@@ -1,72 +0,0 @@
{ inputs, ... }: {
imports = [ inputs.hyprpanel.homeManagerModules.hyprpanel ];
programs.hyprpanel = {
# Enable the module.
# Default: false
enable = true;
# Add '/nix/store/.../hyprpanel' to your
# Hyprland config 'exec-once'.
# Default: false
hyprland.enable = true;
# Fix the overwrite issue with HyprPanel.
# See below for more information.
# Default: false
overwrite.enable = false;
# Import a theme from './themes/*.json'.
# Default: ""
# theme = "gruvbox_split";
# Override the final config with an arbitrary set.
# Useful for overriding colors in your selected theme.
# Default: {}
override = {
theme.bar.menus.text = "#123ABC";
};
# Configure bar layouts for monitors.
# See 'https://hyprpanel.com/configuration/panel.html'.
# Default: null
# layout = {
# "bar.layouts" = {
# "0" = {
# left = [ "dashboard" "workspaces" ];
# middle = [ "media" ];
# right = [ "volume" "systray" "notifications" ];
# };
# };
# };
# Configure and theme almost all options from the GUI.
# Options that require '{}' or '[]' are not yet implemented,
# except for the layout above.
# See 'https://hyprpanel.com/configuration/settings.html'.
# Default: <same as gui>
# settings = {
# bar.launcher.autoDetectIcon = true;
# bar.workspaces.show_icons = true;
#
# menus.clock = {
# time = {
# military = true;
# hideSeconds = true;
# };
# weather.unit = "metric";
# };
#
# menus.dashboard.directories.enabled = false;
# menus.dashboard.stats.enable_gpu = true;
#
# theme.bar.transparent = true;
#
# theme.font = {
# name = "CaskaydiaCove NF";
# size = "16px";
# };
# };
};
}