dotfiles/nix/home/penguin-duet.nix

20 lines
294 B
Nix
Raw Normal View History

{ pkgs, lib, config, ... }: {
imports = [
2023-07-26 21:55:10 +00:00
./home/common.nix
];
nixpkgs.config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
# packages
home.packages = with pkgs; [
obsidian
];
# XDG settings
xdg.enable = true;
xdg.mime.enable = true;
}