mirror of
https://github.com/jbowdre/dotfiles.git
synced 2025-02-17 01:34:39 +00:00
24 lines
363 B
Nix
24 lines
363 B
Nix
{ pkgs, lib, config, ... }: {
|
|
imports = [
|
|
./common.nix
|
|
../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;
|
|
}
|