31 lines
684 B
Nix
31 lines
684 B
Nix
|
{
|
||
|
# Configuration common to all Linux systems
|
||
|
flake = {
|
||
|
nixosModules = {
|
||
|
# NixOS modules that are known to work on nix-darwin.
|
||
|
common.imports = [
|
||
|
./nix.nix
|
||
|
./caches
|
||
|
];
|
||
|
|
||
|
my-home = {
|
||
|
users.users.${config.people.myself}.isNormalUser = true;
|
||
|
home-manager.users.${config.people.myself} = {
|
||
|
imports = [
|
||
|
self.homeModules.common-linux
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
default.imports = [
|
||
|
self.nixosModules.home-manager
|
||
|
self.nixosModules.my-home
|
||
|
self.nixosModules.common
|
||
|
./self-ide.nix
|
||
|
./ssh-authorize.nix
|
||
|
./current-location.nix
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|