nix: cleaned up
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
../packages/firefox/default.nix
|
../system/firefox/default.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
imports = [
|
imports = [
|
||||||
../packages/hyprland/default.nix
|
../packages/hyprland/default.nix
|
||||||
../packages/waybar/default.nix
|
../packages/waybar/default.nix
|
||||||
../packages/hyprpanel/default.nix
|
|
||||||
../packages/ags/default.nix
|
../packages/ags/default.nix
|
||||||
|
../packages/astal/default.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../modules/system.nix
|
../modules/system.nix
|
||||||
../packages/astal/default.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
# home.packages = [
|
hyprland.enable = true;
|
||||||
# pkgs.hyprland
|
|
||||||
# ];
|
|
||||||
|
|
||||||
# programs.hyprland = {
|
|
||||||
# enable = true;
|
|
||||||
# };
|
|
||||||
|
|
||||||
home.file.".config/hypr/hyprland.conf" = {
|
home.file.".config/hypr/hyprland.conf" = {
|
||||||
source = builtins.toPath ./hyprland.conf;
|
source = builtins.toPath ./hyprland.conf;
|
||||||
|
|||||||
@@ -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";
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user