Added nix on droid

This commit is contained in:
Aleksandr Lebedev 2025-01-06 18:58:09 +01:00
parent dadac02455
commit 14c7d85a57
9 changed files with 195 additions and 18 deletions

View file

@ -120,6 +120,9 @@
#background;
loginBackground = false;
})
joplin-desktop
kdenlive
super-productivity
helvum
killall
nix-output-monitor

View file

@ -10,7 +10,7 @@
./modules/tmux/home.nix
] ++ lib.optional (hwconfig.useImpermanence) (import ./modules/impermanence/home.nix { inherit username; inherit inputs; } )
++ lib.optional (config.programs.hyprland.enable) ./modules/hyprland/home.nix
++ lib.optional (builtins.pathExists ./homes/${username}) ./homes/${username};
++ lib.optional (builtins.pathExists ./homes/${username}) (import ./homes/${username} { inherit username; });
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = username;

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
environment.packages = with pkgs;[
neovim
git
fastfetch
];
home-manager.config = (import home.nix);
system.stateVersion = "24.05";
}

View file

@ -0,0 +1,6 @@
{ pkgs, ... }:
{
imports = [
../../modules/nixvim
];
}

View file

@ -11,6 +11,7 @@
#libsForQt5.kio-extras #extra protocols support (sftp, fish and more)
kdePackages.kio-fuse #to mount remote filesystems via FUSE
kdePackages.kio-extras #extra protocols support (sftp, fish and more)
kdePackages.kio-admin
waybar
swaynotificationcenter
libnotify

View file

@ -8,6 +8,7 @@
enable = true;
colorschemes.catppuccin.enable = true;
plugins = {
markview.enable = true;
tmux-navigator = {
enable = true;
};