mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-12-10 03:49:44 +00:00
feat(home): add host y2q
This commit is contained in:
parent
da3d4c46d8
commit
eaa6a4fdec
3 changed files with 31 additions and 3 deletions
23
home/hosts/y2q.nix
Normal file
23
home/hosts/y2q.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
inputs.nixvim.homeModules.nixvim
|
||||
inputs.sops-nix.homeManagerModules.sops
|
||||
] ++ (
|
||||
let
|
||||
modulesPath = ../modules;
|
||||
cliModules = builtins.attrNames (builtins.readDir (modulesPath + "/cli/"));
|
||||
in
|
||||
map (module: modulesPath + "/cli/${module}") cliModules
|
||||
);
|
||||
|
||||
home = {
|
||||
username = "android";
|
||||
homeDirectory = "/home/android";
|
||||
stateVersion = "24.11";
|
||||
};
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
systemd.user.startServices = "sd-switch";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue