This commit is contained in:
maxstrb 2026-03-14 23:17:36 +01:00
parent b0ba53b89e
commit fc3c55b4a7
5 changed files with 19 additions and 10 deletions

View file

@ -1,4 +1,8 @@
{ {
pkgs,
inputs,
...
}: {
hardware.graphics = { hardware.graphics = {
enable = true; enable = true;
enable32Bit = true; enable32Bit = true;
@ -7,7 +11,11 @@
xdg = { xdg = {
mime.enable = true; mime.enable = true;
menus.enable = true; menus.enable = true;
portal.enable = true; portal = {
enable = true;
extraPortals = [pkgs.xdg-desktop-portal-cosmic];
config.common.default = "cosmic";
};
}; };
services.xserver = { services.xserver = {

View file

@ -19,7 +19,7 @@
boot = { boot = {
loader = { loader = {
grub.enable = true; systemd-boot.enable = true;
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
}; };
@ -65,9 +65,4 @@
openFirewall = true; openFirewall = true;
}; };
}; };
environment.systemPackages = [
(lib.hiPrio pkgs.uutils-coreutils.override {prefix = "";})
(lib.hiPrio pkgs.uutils-findutils.override {prefix = "";})
];
} }

View file

@ -1,4 +1,8 @@
{pkgs, ...}: { {
pkgs,
inputs,
...
}: {
home.packages = with pkgs; [ home.packages = with pkgs; [
# Browser # Browser
inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default
@ -16,6 +20,7 @@
libreoffice libreoffice
trilium-desktop trilium-desktop
xournalpp xournalpp
cosmic-files
# Images # Images
pixieditor pixieditor

View file

@ -66,7 +66,7 @@
layout = { layout = {
gaps = 8; gaps = 8;
default-column-width = {proportion = 1;}; default-column-width = {proportion = 1.0;};
preset-column-widths = [ preset-column-widths = [
{proportion = 0.33333;} {proportion = 0.33333;}

View file

@ -1,6 +1,7 @@
{ {
pkgs, pkgs,
device-name, device-name,
inputs,
... ...
}: { }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
@ -33,7 +34,7 @@
nushell = { nushell = {
enable = true; enable = true;
extraConfig = builtins.readFile "config.nu"; extraConfig = builtins.readFile ./config.nu;
settings = { settings = {
show_banner = false; show_banner = false;