chore: spring cleaning

purge unused files
fmt according to alejandra syntax
This commit is contained in:
Zhongheng Liu 2024-12-17 00:51:29 +02:00
commit b60c28d972
Signed by: steven
GPG key ID: 805A28B071DAD84B
6 changed files with 31 additions and 7 deletions

View file

@ -10,6 +10,7 @@ in {
# Type definitions for nix variables used in this configuration
options = with lib;
with types; {
defaultApplications = {fileManager = mkOption {type = str;};};
myWallPaperPath = mkOption {type = path;};
myUserName = mkOption {type = str;};
myHostName = mkOption {type = str;};
@ -35,13 +36,15 @@ in {
myAutostartCommands = ["${pkgs.brightnessctl}/bin/brightnessctl s ${monitorMinBrightness}"];
};
myConfigLocation = "/home/${myUserName}/nix-conf";
desktopFontFullName = "JetBrainsMono Nerd Font";
desktopFontFullName = "IntoneMono NFM:style=Regular";
myAutostartCommands = [
"${pkgs.brightnessctl}/bin/brightnessctl s ${monitorMaxBrightness}"
"fcitx5"
# "${pkgs.foot}/bin/foot --server -f \"${desktopFontFullName}:size=12\" -o colors.alpha=0.85"
"${pkgs.udiskie}/bin/udiskie"
"${pkgs.pa-notify}/bin/pa-notify"
"${pkgs.networkmanagerapplet}/bin/nm-applet"
];
defaultApplications.fileManager = "${pkgs.nemo}/bin/nemo";
};
}