Refactor with nixfmt

This commit is contained in:
2026-02-06 08:36:47 +01:00
parent fe643f065b
commit 82e4ea3c73
41 changed files with 1259 additions and 1112 deletions

View File

@@ -1,38 +1,48 @@
{ currentSystemUser, currentSystemDe, pkgs, ... }:
{
imports = [
./fish.nix
./git.nix
./gnome.nix
./kitty.nix
./mangohud.nix
./tmux.nix
./zoxide.nix
] ++ (if currentSystemDe == "hyprland" then [
./hyprland
] else []
);
currentSystemUser,
currentSystemDe,
pkgs,
...
}:
{
imports = [
./fish.nix
./git.nix
./gnome.nix
./kitty.nix
./mangohud.nix
./tmux.nix
./zoxide.nix
]
++ (
if currentSystemDe == "hyprland" then
[
./hyprland
]
else
[ ]
);
home = {
username = "${currentSystemUser}";
sessionVariables = {
EDITOR = "nvim";
BROWSER = "firefox";
TERMINAL = "gnome-boxes";
};
packages = [
pkgs.dconf
];
pointerCursor = {
enable = false;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
};
};
home = {
username = "${currentSystemUser}";
sessionVariables = {
EDITOR = "nvim";
BROWSER = "firefox";
TERMINAL = "gnome-boxes";
};
packages = [
pkgs.dconf
];
pointerCursor = {
enable = false;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
};
};
dconf.enable = true;
dconf.enable = true;
programs.home-manager.enable = true;
programs.home-manager.enable = true;
home.stateVersion = "24.11";
home.stateVersion = "24.11";
}