nixos: profiles: move from top-level
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
My profiles are actually just "special" NixOS modules in that they orchestrate settings that usually span the NixOS/home-manager boundary, or otherwise set up configurations from multiple modules at once.
This commit is contained in:
parent
65a8f7c481
commit
570349e80f
9 changed files with 1 additions and 2 deletions
12
modules/nixos/profiles/default.nix
Normal file
12
modules/nixos/profiles/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Configuration that spans accross system and home, or are almagations of modules
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./bluetooth
|
||||
./devices
|
||||
./gtk
|
||||
./laptop
|
||||
./wm
|
||||
./x
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue