mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-16 04:02:00 +00:00
dawin/linux
This commit is contained in:
parent
5cdf8fd873
commit
1e4caa255f
6 changed files with 20 additions and 19 deletions
21
hosts/linux/default.nix
Normal file
21
hosts/linux/default.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
inputs,
|
||||
lib,
|
||||
pkgs,
|
||||
username,
|
||||
...
|
||||
}: let
|
||||
packageSets = import ../../lib/package-sets.nix {inherit inputs lib pkgs;};
|
||||
in {
|
||||
imports = [
|
||||
../../home/linux.nix
|
||||
];
|
||||
|
||||
targets.genericLinux.enable = true;
|
||||
|
||||
home = {
|
||||
inherit username;
|
||||
homeDirectory = "/home/${username}";
|
||||
packages = packageSets.core ++ packageSets.extras;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue