remake dir structure for home-manager
This commit is contained in:
parent
9415d40508
commit
3151b79560
26 changed files with 9 additions and 9 deletions
24
home/features/desktop/default.nix
Normal file
24
home/features/desktop/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./font.nix
|
||||
./firefox.nix
|
||||
./alacritty.nix
|
||||
./gtk.nix
|
||||
./vscode.nix
|
||||
./1password.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
vesktop
|
||||
zed-editor
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
MOZ_ENABLE_WAYLAND = 1;
|
||||
QT_QPA_PLATFORM = "wayland";
|
||||
LIBSEAT_BACKEND = "logind";
|
||||
};
|
||||
|
||||
xdg.mimeApps.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue