dotfiles/nix/home/penguin-fw.nix

25 lines
363 B
Nix
Raw Normal View History

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