add focalor
This commit is contained in:
parent
da440cb07a
commit
8be3e48a3c
9 changed files with 217 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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
16
modules/desktop/core.nix
Normal 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
25
modules/desktop/sway.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue