mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2026-05-07 13:36:24 +00:00
feat: add ideapad host
This commit is contained in:
parent
bf7e249d5b
commit
7cfc801165
10 changed files with 152 additions and 5 deletions
37
home/hosts/ideapad.nix
Normal file
37
home/hosts/ideapad.nix
Normal 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue