system/home/users/nas/home.nix

34 lines
524 B
Nix
Raw Normal View History

2023-04-04 23:04:09 +03:00
{ pkgs, ... }:
2022-11-13 23:14:04 +03:00
{
imports = [
../../modules/window_manager
../../modules/terminal.nix
../../modules/shell.nix
2022-11-13 23:14:04 +03:00
../../modules/notifications
2022-11-13 23:14:04 +03:00
../../modules/themes
../../modules/themes/catppuccin/frappe.nix
2022-11-13 23:14:04 +03:00
];
xdg.enable = true;
home.keyboard = {
model = "pc105";
layout = "us,ru";
options = [ "grp:win_space_toggle" ];
};
2023-04-04 23:04:09 +03:00
home.packages = with pkgs.unstable; [
2022-11-13 23:14:04 +03:00
skypeforlinux
2023-02-20 22:17:40 +03:00
tdesktop
2022-11-13 23:14:04 +03:00
libreoffice
image-roll
2022-11-17 23:27:28 +03:00
gnome.nautilus
2022-11-13 23:14:04 +03:00
# browser
firefox
2022-11-13 23:14:04 +03:00
];
}