mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
Change the laptop hostname to seb-laptop
This commit is contained in:
parent
6bc1112c53
commit
dbd3c3ff19
7 changed files with 9 additions and 9 deletions
34
hosts/seb-laptop/default.nix
Normal file
34
hosts/seb-laptop/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [
|
||||
../common.nix
|
||||
./hardware.nix
|
||||
];
|
||||
|
||||
networking.hostName = "seb-laptop";
|
||||
|
||||
environment.sessionVariables.FLAKE = "/home/seb/Projects/nixos/my-config";
|
||||
|
||||
myConfig = {
|
||||
boot-loader.systemd-boot.enable = true;
|
||||
|
||||
dm.lightdm.enable = true;
|
||||
de.qtile.enable = true;
|
||||
|
||||
wlan.enable = true;
|
||||
bluetooth.enable = true;
|
||||
|
||||
sound.pipewire.enable = true;
|
||||
auto-gc.enable = true;
|
||||
vm.qemu.enable = true;
|
||||
flatpak.enable = true;
|
||||
vpn.lgs.enable = true;
|
||||
comma.enable = true;
|
||||
sops.enable = true;
|
||||
doas.enable = false;
|
||||
printing.enable = true;
|
||||
syncthing.enable = true;
|
||||
};
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
services.gvfs.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue