Merge branch 'main' of https://git.nekomimi.pet/waveringana/nixcfg
This commit is contained in:
commit
89635578ef
16 changed files with 35 additions and 3 deletions
8
common/bluetooth.nix
Normal file
8
common/bluetooth.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ config, lib ,... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
hardware.bluetooth.enable = true;
|
||||||
|
hardware.bluetooth.powerOnBoot = true;
|
||||||
|
|
||||||
|
services.blueman.enable = true;
|
||||||
|
}
|
7
common/desktop/core.nix
Normal file → Executable file
7
common/desktop/core.nix
Normal file → Executable file
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
ghostty
|
#ghostty
|
||||||
kitty
|
kitty
|
||||||
vscode
|
vscode
|
||||||
inputs.zen-browser.packages."${system}".default
|
inputs.zen-browser.packages."${system}".default
|
||||||
|
@ -10,6 +10,11 @@
|
||||||
hyfetch
|
hyfetch
|
||||||
sway-contrib.grimshot
|
sway-contrib.grimshot
|
||||||
discord
|
discord
|
||||||
|
pamixer
|
||||||
|
];
|
||||||
|
|
||||||
|
fonts.packages = [
|
||||||
|
pkgs.nerd-fonts.fira-code
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||||
|
|
12
common/desktop/sway.nix
Normal file → Executable file
12
common/desktop/sway.nix
Normal file → Executable file
|
@ -17,13 +17,21 @@ in
|
||||||
mako
|
mako
|
||||||
];
|
];
|
||||||
|
|
||||||
services.gnome.gnome-keyring.enable = true;
|
|
||||||
|
|
||||||
programs.sway = {
|
programs.sway = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wrapperFeatures.gtk = true;
|
wrapperFeatures.gtk = true;
|
||||||
|
package = pkgs.swayfx;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.sessionVariables = {
|
||||||
|
NIXOS_OZONE_WL = "1";
|
||||||
|
GTK_USE_PORTAL=0;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.gvfs.enable = true;
|
||||||
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
services.greetd = {
|
services.greetd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
11
common/desktop/vnc.nix
Executable file
11
common/desktop/vnc.nix
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
{ pkgs, config, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.xserver.enable = true;
|
||||||
|
services.displayManager.sddm.enable = true;
|
||||||
|
services.desktopManager.plasma6.enable = true;
|
||||||
|
|
||||||
|
services.xrdp.enable = true;
|
||||||
|
services.xrdp.defaultWindowManager = "startplasma-x11";
|
||||||
|
services.xrdp.openFirewall = true;
|
||||||
|
}
|
0
common/efi.nix
Normal file → Executable file
0
common/efi.nix
Normal file → Executable file
0
common/nvidia.nix
Normal file → Executable file
0
common/nvidia.nix
Normal file → Executable file
0
common/services.nix
Normal file → Executable file
0
common/services.nix
Normal file → Executable file
0
common/system.nix
Normal file → Executable file
0
common/system.nix
Normal file → Executable file
0
common/users.nix
Normal file → Executable file
0
common/users.nix
Normal file → Executable file
0
hosts/morax/default.nix
Normal file → Executable file
0
hosts/morax/default.nix
Normal file → Executable file
0
hosts/morax/hardware.nix
Normal file → Executable file
0
hosts/morax/hardware.nix
Normal file → Executable file
0
hosts/morax/secrets.nix
Normal file → Executable file
0
hosts/morax/secrets.nix
Normal file → Executable file
0
modules/caddy/default.nix
Normal file → Executable file
0
modules/caddy/default.nix
Normal file → Executable file
0
modules/forgejo/default.nix
Normal file → Executable file
0
modules/forgejo/default.nix
Normal file → Executable file
0
modules/garage/default.nix
Normal file → Executable file
0
modules/garage/default.nix
Normal file → Executable file
0
modules/github-runners/default.nix
Normal file → Executable file
0
modules/github-runners/default.nix
Normal file → Executable file
Loading…
Add table
Add a link
Reference in a new issue