Added nix on droid
This commit is contained in:
parent
dadac02455
commit
14c7d85a57
9 changed files with 195 additions and 18 deletions
|
|
@ -120,6 +120,9 @@
|
|||
#background;
|
||||
loginBackground = false;
|
||||
})
|
||||
joplin-desktop
|
||||
kdenlive
|
||||
super-productivity
|
||||
helvum
|
||||
killall
|
||||
nix-output-monitor
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
13
nixos/hosts/android/default.nix
Normal file
13
nixos/hosts/android/default.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.packages = with pkgs;[
|
||||
neovim
|
||||
git
|
||||
fastfetch
|
||||
];
|
||||
|
||||
home-manager.config = (import home.nix);
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
}
|
||||
6
nixos/hosts/android/home.nix
Normal file
6
nixos/hosts/android/home.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
../../modules/nixvim
|
||||
];
|
||||
}
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
enable = true;
|
||||
colorschemes.catppuccin.enable = true;
|
||||
plugins = {
|
||||
markview.enable = true;
|
||||
tmux-navigator = {
|
||||
enable = true;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue