system/users/nas/home.nix

34 lines
510 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
../modules/window_manager
../modules/terminal.nix
../modules/shell.nix
../modules/notifications
../modules/themes
../modules/themes/catppuccin/frappe.nix
];
xdg.enable = true;
home.keyboard = {
model = "pc105";
layout = "us,ru";
options = [ "grp:win_space_toggle" ];
};
home.packages = with pkgs; [
skypeforlinux
tdesktop
libreoffice
image-roll
gnome.nautilus
# browser
firefox
];
}