preserving hardware-configuration
This commit is contained in:
parent
8d34db82c8
commit
120d26b0e4
13 changed files with 181 additions and 207 deletions
|
|
@ -1,53 +1,45 @@
|
|||
{ config, pkgs, inputs, lib, ... }:
|
||||
|
||||
{
|
||||
xdg.userDirs.createDirectories = true;
|
||||
imports = [
|
||||
./minimal.nix
|
||||
|
||||
home.file.".npmrc".text = ''
|
||||
prefix = ${config.xdg.dataHome}/npm/packages
|
||||
'';
|
||||
|
||||
xdg.configFile."castget/castget.conf".source = ./castget/castget.conf;
|
||||
./calendars.nix
|
||||
./cli-office
|
||||
./devel.nix
|
||||
./firefox.nix
|
||||
./foot.nix
|
||||
./mail
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
||||
aichat
|
||||
appimage-run
|
||||
drawing
|
||||
feh
|
||||
keepassxc
|
||||
usbutils
|
||||
vlc
|
||||
wl-clipboard
|
||||
yubioath-flutter
|
||||
|
||||
zathura
|
||||
];
|
||||
|
||||
imports = [
|
||||
./minimal.nix
|
||||
./devel.nix
|
||||
./calendars.nix
|
||||
./foot.nix
|
||||
./mail
|
||||
./cli-office
|
||||
];
|
||||
|
||||
programs.taskwarrior = {
|
||||
|
||||
xdg.userDirs = {
|
||||
enable = true;
|
||||
package = pkgs.taskwarrior3;
|
||||
|
||||
dataLocation = "${config.xdg.dataHome}/taskwarrior/tasks";
|
||||
|
||||
colorTheme = "light-256";
|
||||
config = {
|
||||
report.list.columns = ["id" "depends.indicator" "priority" "project" "recur.indicator" "scheduled.countdown" "due" "until.age" "status.short" "description.count" "tags"];
|
||||
report.list.labels= ["ID" "D" "Prio" "Proj" "R" "Scheduled" "Due" "Until" "S" "Description" "Tags"];
|
||||
};
|
||||
extraConfig = "
|
||||
hooks.location=${config.xdg.dataHome}/taskwarrior/hooks
|
||||
verbose=affected,context,edit,label,header,new-id,project,special,sync,recur
|
||||
";
|
||||
createDirectories = true;
|
||||
desktop = "${config.home.homeDirectory}/desktop";
|
||||
documents = "${config.home.homeDirectory}/misc";
|
||||
download = "${config.home.homeDirectory}/tmp";
|
||||
music = "${config.home.homeDirectory}/media/music";
|
||||
pictures = "${config.home.homeDirectory}/media/img";
|
||||
publicShare = "${config.home.homeDirectory}/box";
|
||||
templates = "${config.xdg.dataHome}/templates";
|
||||
videos = "${config.home.homeDirectory}/media/vid";
|
||||
};
|
||||
|
||||
xdg.configFile."castget/castget.conf".source = ./castget/castget.conf;
|
||||
|
||||
services.syncthing.enable = true;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue