mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
organized some files and modularized
This commit is contained in:
parent
ad9c7413a3
commit
1c9935f11c
4 changed files with 43 additions and 52 deletions
11
dot_config/flake/modules/nixos/android-studio.nix
Normal file
11
dot_config/flake/modules/nixos/android-studio.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
android-studio
|
||||
android-tools
|
||||
];
|
||||
|
||||
programs.adb.enable = true;
|
||||
services.udev.packages = [
|
||||
pkgs.android-udev-rules
|
||||
];
|
||||
}
|
||||
20
dot_config/flake/modules/nixos/boot.nix
Normal file
20
dot_config/flake/modules/nixos/boot.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{pkgs, ...}: {
|
||||
# Bootloader
|
||||
boot = {
|
||||
loader = {
|
||||
timeout = 0;
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
configurationLimit = 5;
|
||||
};
|
||||
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
|
||||
plymouth = {
|
||||
enable = true;
|
||||
themePackages = [pkgs.catppuccin-plymouth];
|
||||
theme = "catppuccin-macchiato";
|
||||
};
|
||||
};
|
||||
}
|
||||
5
dot_config/flake/modules/nixos/gnome.nix
Normal file
5
dot_config/flake/modules/nixos/gnome.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{...}: {
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue