33 lines
520 B
Nix
33 lines
520 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
|
|
kotatogram-desktop
|
|
libreoffice
|
|
image-roll
|
|
gnome.nautilus
|
|
|
|
# browser
|
|
firefox
|
|
];
|
|
}
|