add focalor

This commit is contained in:
waveringana 2025-06-01 01:27:21 -04:00
parent da440cb07a
commit 8be3e48a3c
9 changed files with 217 additions and 2 deletions

View file

@ -1,5 +1,7 @@
{ pkgs, config, ... }:
{
nixpkgs.config.allowUnfree = true; #because im a gigachad
# boot, networking, locale, stateVersion
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;

View file

@ -6,6 +6,17 @@
packages = with pkgs; [ tree ];
};
programs.git = {
enable = true;
config = {
user.name = "waveringana";
user.email = "ana@nekomimi.pet";
init = {
defaultBranch = "main";
};
};
};
security.sudo.enable = true;
security.sudo.wheelNeedsPassword = false;
}

16
modules/desktop/core.nix Normal file
View file

@ -0,0 +1,16 @@
{ config, pkgs, system, lib, inputs, ... }:
{
environment.systemPackages = with pkgs; [
ghostty
kitty
vscode
inputs.zen-browser.packages."${system}".default
neofetch
fastfetch
sway-contrib.grimshot
discord
];
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}

25
modules/desktop/sway.nix Normal file
View file

@ -0,0 +1,25 @@
{ config, pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
grim
wl-clipboard
mako
];
services.gnome.gnome-keyring.enable = true;
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd sway";
user = "greeter";
};
};
};
}