add ona-book
This commit is contained in:
parent
7ed15d5b1b
commit
29ea7db3aa
6 changed files with 113 additions and 9 deletions
37
hosts/ona-book/default.nix
Normal file
37
hosts/ona-book/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
nixpkgs,
|
||||
common-modules,
|
||||
desktop-modules,
|
||||
...
|
||||
}:
|
||||
nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules =
|
||||
common-modules
|
||||
++ desktop-modules
|
||||
++ [
|
||||
./hardware.nix
|
||||
../../home/gnome.nix
|
||||
../../users/ronja.nix
|
||||
../../modules/gnome.nix
|
||||
|
||||
{
|
||||
networking.hostName = "ona-book";
|
||||
services.xserver.xkb = {
|
||||
layout = "us";
|
||||
options = "eurosign:e,caps:escape";
|
||||
};
|
||||
}
|
||||
|
||||
{
|
||||
home-manager.users.ronja = import ../../home/ronja.nix;
|
||||
|
||||
users.users.ronja.openssh.authorizedKeys.keys = [
|
||||
];
|
||||
}
|
||||
|
||||
{
|
||||
|
||||
}
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue