Merge default.nix files into configuration.nix
This commit is contained in:
parent
6cd711920b
commit
30f336f05b
10 changed files with 92 additions and 121 deletions
|
@ -1,6 +1,26 @@
|
|||
{ inputs, ... }:
|
||||
{ inputs, username, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../common
|
||||
../../users/opdavies
|
||||
|
||||
./configuration.nix
|
||||
];
|
||||
|
||||
features = {
|
||||
cli = {
|
||||
docker.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
wsl = {
|
||||
enable = true;
|
||||
defaultUser = username;
|
||||
};
|
||||
|
||||
services.syncthing.enable = true;
|
||||
|
||||
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
||||
|
||||
nix = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue