Compare commits
No commits in common. "43626bc4838686a132f0d63e629ddbd0dfb697dd" and "058921bd56108a016a06872c4332b2e4577bd872" have entirely different histories.
43626bc483
...
058921bd56
|
@ -9,36 +9,8 @@
|
||||||
polkit.enable = true;
|
polkit.enable = true;
|
||||||
rtkit.enable = true;
|
rtkit.enable = true;
|
||||||
};
|
};
|
||||||
environment.etc = {
|
|
||||||
"xdg/gtk-2.0/gtkrc".text = "gtk-error-bell=0";
|
|
||||||
"xdg/gtk-3.0/settings.ini".text = ''
|
|
||||||
[Settings]
|
|
||||||
gtk-error-bell=false
|
|
||||||
'';
|
|
||||||
"xdg/gtk-4.0/settings.ini".text = ''
|
|
||||||
[Settings]
|
|
||||||
gtk-error-bell=false
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
services = {
|
services = {
|
||||||
xserver.displayManager.sessionPackages = [ pkgs.sway ];
|
xserver.displayManager.sessionPackages = [ pkgs.sway ];
|
||||||
printing = {
|
|
||||||
enable = true;
|
|
||||||
browsing = true;
|
|
||||||
browsedConf = ''
|
|
||||||
BrowseDNSSDSubTypes _cups,_print
|
|
||||||
BrowseLocalProtocols all
|
|
||||||
BrowseRemoteProtocols all
|
|
||||||
CreateIPPPrinterQueues All
|
|
||||||
|
|
||||||
BrowseProtocols all
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
avahi = {
|
|
||||||
enable = true;
|
|
||||||
nssmdns4 = true;
|
|
||||||
openFirewall = true;
|
|
||||||
};
|
|
||||||
pipewire = {
|
pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
alsa = {
|
alsa = {
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
let
|
let
|
||||||
mini-text = pkgs.callPackage ../../Programs/MiniText { };
|
mini-text = pkgs.callPackage ../../Programs/MiniText { };
|
||||||
hyperplane = pkgs.callPackage ../../Programs/Hyperplane { };
|
hyperplane = pkgs.callPackage ../../Programs/Hyperplane { };
|
||||||
|
cosmic-terminal = pkgs.callPackage ../../Programs/Cosmic-Terminal {};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
|
@ -31,6 +32,7 @@ in
|
||||||
pamixer
|
pamixer
|
||||||
hyperplane
|
hyperplane
|
||||||
mini-text
|
mini-text
|
||||||
|
cosmic-terminal
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,97 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
rust,
|
||||||
|
rustPlatform,
|
||||||
|
cmake,
|
||||||
|
makeBinaryWrapper,
|
||||||
|
cosmic-icons,
|
||||||
|
just,
|
||||||
|
pkg-config,
|
||||||
|
libxkbcommon,
|
||||||
|
glib,
|
||||||
|
gtk3,
|
||||||
|
libinput,
|
||||||
|
fontconfig,
|
||||||
|
freetype,
|
||||||
|
wayland,
|
||||||
|
xorg
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "cosmic-term";
|
||||||
|
version = "unstable-2023-12-26";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "pop-os";
|
||||||
|
repo = pname;
|
||||||
|
rev = "bf3f507fdd73a06ab1f9b199a98dca6988aafec2";
|
||||||
|
hash = "sha256-c5RNrC0AZvz+O3nj7VvMQuA/U0sgxZCVHn+cc+4pIN8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoLock = {
|
||||||
|
lockFile = ./Cargo.lock;
|
||||||
|
outputHashes = {
|
||||||
|
"accesskit-0.11.0" = "sha256-xVhe6adUb8VmwIKKjHxwCwOo5Y1p3Or3ylcJJdLDrrE=";
|
||||||
|
"atomicwrites-0.4.2" = "sha256-QZSuGPrJXh+svMeFWqAXoqZQxLq/WfIiamqvjJNVhxA=";
|
||||||
|
"cosmic-config-0.1.0" = "sha256-V371fmSmLIwUxtx6w+C55cBJ8oyYgN86r3FZ8rGBLEs=";
|
||||||
|
"cosmic-text-0.10.0" = "sha256-/4Hg+7R0LRF4paXIREkMOTtbQ1xgONym5nKb/TuyeD4=";
|
||||||
|
"glyphon-0.3.0" = "sha256-T7hvqtR3zi9wNemFrPPGakq2vEraLpnPkN7umtumwVg=";
|
||||||
|
"sctk-adwaita-0.5.4" = "sha256-yK0F2w/0nxyKrSiHZbx7+aPNY2vlFs7s8nu/COp2KqQ=";
|
||||||
|
"softbuffer-0.3.3" = "sha256-eKYFVr6C1+X6ulidHIu9SP591rJxStxwL9uMiqnXx4k=";
|
||||||
|
"smithay-client-toolkit-0.16.1" = "sha256-z7EZThbh7YmKzAACv181zaEZmWxTrMkFRzP0nfsHK6c=";
|
||||||
|
"taffy-0.3.11" = "sha256-SCx9GEIJjWdoNVyq+RZAGn0N71qraKZxf9ZWhvyzLaI=";
|
||||||
|
"winit-0.28.6" = "sha256-FhW6d2XnXCGJUMoT9EMQew9/OPXiehy/JraeCiVd76M=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace justfile --replace '#!/usr/bin/env' "#!$(command -v env)"
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
just
|
||||||
|
pkg-config
|
||||||
|
makeBinaryWrapper
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
libxkbcommon
|
||||||
|
xorg.libX11
|
||||||
|
libinput
|
||||||
|
fontconfig
|
||||||
|
freetype
|
||||||
|
wayland
|
||||||
|
glib
|
||||||
|
gtk3
|
||||||
|
];
|
||||||
|
|
||||||
|
dontUseJustBuild = true;
|
||||||
|
|
||||||
|
justFlags = [
|
||||||
|
"--set"
|
||||||
|
"prefix"
|
||||||
|
(placeholder "out")
|
||||||
|
"--set"
|
||||||
|
"bin-src"
|
||||||
|
"target/${
|
||||||
|
rust.lib.toRustTargetSpecShort stdenv.hostPlatform
|
||||||
|
}/release/cosmic-term"
|
||||||
|
];
|
||||||
|
|
||||||
|
# LD_LIBRARY_PATH can be removed once tiny-xlib is bumped above 0.2.2
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram "$out/bin/${pname}" \
|
||||||
|
--suffix XDG_DATA_DIRS : "${cosmic-icons}/share" \
|
||||||
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ xorg.libX11 wayland libxkbcommon ]}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/pop-os/cosmic-term";
|
||||||
|
description = "Terminal for the COSMIC Desktop Environment";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = with maintainers; [ ahoneybun ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -12,15 +12,5 @@
|
||||||
services.nginx.virtualHosts.${config.services.nextcloud.hostName} = {
|
services.nginx.virtualHosts.${config.services.nextcloud.hostName} = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
locations."/" = {
|
|
||||||
proxyPass = "http://localhost:8181";
|
|
||||||
proxyWebsockets = true; # needed if you need to use WebSocket
|
|
||||||
extraConfig =
|
|
||||||
# required when the target is also TLS server with multiple hosts
|
|
||||||
"proxy_ssl_server_name on;" +
|
|
||||||
# required when the server wants to use HTTP Authentication
|
|
||||||
"proxy_pass_header Authorization;"
|
|
||||||
;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
services.redis.servers = {
|
|
||||||
hermitSearch = {
|
|
||||||
enable = true;
|
|
||||||
port = 6379;
|
|
||||||
openFirewall = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -17,7 +17,6 @@ in
|
||||||
bottles
|
bottles
|
||||||
pavucontrol
|
pavucontrol
|
||||||
qbittorrent
|
qbittorrent
|
||||||
floorp
|
|
||||||
# Office
|
# Office
|
||||||
slack
|
slack
|
||||||
onlyoffice-bin
|
onlyoffice-bin
|
||||||
|
@ -45,7 +44,6 @@ in
|
||||||
wally-cli
|
wally-cli
|
||||||
# Programming
|
# Programming
|
||||||
godot_4
|
godot_4
|
||||||
unityhub
|
|
||||||
lapce
|
lapce
|
||||||
signal-desktop
|
signal-desktop
|
||||||
blanket
|
blanket
|
||||||
|
|
|
@ -44,8 +44,6 @@
|
||||||
./System/packages.nix
|
./System/packages.nix
|
||||||
./Programs/steam.nix
|
./Programs/steam.nix
|
||||||
./Hosts/hertog-laptop/packages.nix
|
./Hosts/hertog-laptop/packages.nix
|
||||||
# Redis server for HermitSearch testing
|
|
||||||
./Services/redis.nix
|
|
||||||
# Users still need to be set outside of home-manager
|
# Users still need to be set outside of home-manager
|
||||||
./Users/Hertog/user.nix
|
./Users/Hertog/user.nix
|
||||||
# Home manager imports
|
# Home manager imports
|
||||||
|
|
Loading…
Reference in New Issue