mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-07 21:39:23 +02:00
use old name
This commit is contained in:
parent
b032ab2f60
commit
b4dfe5ac68
3 changed files with 1 additions and 1 deletions
59
systems/yokai/default.nix
Normal file
59
systems/yokai/default.nix
Normal file
|
@ -0,0 +1,59 @@
|
|||
{ config, pkgs, nixos-hardware, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware.nix
|
||||
nixos-hardware.nixosModules.pine64-pinebook-pro
|
||||
];
|
||||
|
||||
jopejoe1 = {
|
||||
audio = { enable = true; };
|
||||
bluetooth.enable = true;
|
||||
local.enable = true;
|
||||
nix.enable = true;
|
||||
plasma.enable = true;
|
||||
sway.enable = true;
|
||||
user = {
|
||||
jopejoe1.enable = true;
|
||||
root.enable = true;
|
||||
};
|
||||
ssh.enable = true;
|
||||
};
|
||||
|
||||
networking = {
|
||||
hostId = "af13bbec";
|
||||
networkmanager.enable = true;
|
||||
};
|
||||
|
||||
hardware.opengl.enable = true;
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
catppuccin-kvantum
|
||||
catppuccin-kde
|
||||
catppuccin-gtk
|
||||
tela-icon-theme
|
||||
element-desktop
|
||||
kitty
|
||||
];
|
||||
|
||||
programs = {
|
||||
xwayland.enable = true;
|
||||
kdeconnect.enable = true;
|
||||
};
|
||||
console = {
|
||||
enable = true;
|
||||
keyMap = "us";
|
||||
};
|
||||
services.xserver = { layout = "us"; };
|
||||
|
||||
boot = {
|
||||
supportedFilesystems = [ "ntfs" "btrfs" ];
|
||||
loader = {
|
||||
grub.enable = false;
|
||||
generic-extlinux-compatible.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue