mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 23:11:34 +01:00
Rename the hosts
This commit is contained in:
parent
7481d44f0a
commit
a101b7ab25
11 changed files with 14 additions and 14 deletions
39
hosts/inspiron/default.nix
Normal file
39
hosts/inspiron/default.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [
|
||||
../common.nix
|
||||
./hardware.nix
|
||||
];
|
||||
|
||||
networking.hostName = "inspiron";
|
||||
|
||||
environment.sessionVariables.FLAKE = "/home/seb/Projects/nixos/my-config";
|
||||
|
||||
myConfig = {
|
||||
boot-loader = {
|
||||
systemd-boot.enable = true;
|
||||
silent = true;
|
||||
};
|
||||
|
||||
dm.gdm.enable = true;
|
||||
de.hyprland.enable = true;
|
||||
|
||||
wlan.enable = true;
|
||||
bluetooth.enable = true;
|
||||
|
||||
sound.enable = true;
|
||||
auto-gc.enable = true;
|
||||
vm.qemu.enable = true;
|
||||
flatpak.enable = true;
|
||||
vpn.lgs.enable = true;
|
||||
comma.enable = true;
|
||||
sops.enable = true;
|
||||
printing.enable = true;
|
||||
syncthing.enable = true;
|
||||
};
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
programs.nh.enable = true;
|
||||
services.auto-cpufreq.enable = true;
|
||||
hardware.brillo.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue