feat: add ideapad host

This commit is contained in:
toast 2026-04-30 22:50:41 +09:00
parent bf7e249d5b
commit 7cfc801165
10 changed files with 152 additions and 5 deletions

37
home/hosts/ideapad.nix Normal file
View file

@ -0,0 +1,37 @@
{ inputs, ... }:
{
imports = [
inputs.nixvim.homeModules.nixvim
inputs.nix-flatpak.homeManagerModules.nix-flatpak
inputs.sops-nix.homeManagerModules.sops
../modules/graphical/waybar
../modules/graphical/cliphist.nix
../modules/graphical/dunst.nix
../modules/graphical/firefox.nix
../modules/graphical/fonts.nix
../modules/graphical/hypridle.nix
../modules/graphical/hyprland.nix
../modules/graphical/hyprshot-save.nix
../modules/graphical/kitty.nix
../modules/graphical/powermenu.nix
../modules/graphical/tofi.nix
../modules/graphical/udiskie.nix
../modules/graphical/xdg.nix
] ++ (
let
modulesPath = ../modules;
cliModules = builtins.attrNames (builtins.readDir (modulesPath + "/cli/"));
in
map (module: modulesPath + "/cli/${module}") cliModules
);
home = {
username = "toast";
homeDirectory = "/home/toast";
stateVersion = "24.11";
};
nixpkgs.config.allowUnfree = true;
systemd.user.startServices = "sd-switch";
}