Compare commits

..

No commits in common. "5a8f369e026be4b7f1ee5978562731229fd66070" and "6f468d2d0ff422850b458df966d798d3303928bf" have entirely different histories.

5 changed files with 2 additions and 29 deletions

View file

@ -1,7 +1,6 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs, ... }:
{
nix = {
settings = {
@ -10,9 +9,6 @@
};
};
# install the most recent stable linux kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;

View file

@ -1,10 +1,5 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ devenv ];
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
environment.systemPackages = with pkgs; [ direnv devenv ];
nix.extraOptions = ''
extra-substituters = https://devenv.cachix.org

View file

@ -6,7 +6,6 @@ let
onlyoffice-bin
krita
ytmdesktop
ktailctl
wl-clipboard
# we install xdg-desktop-portal-gtx so theming works from kde
xdg-desktop-portal-gtk
@ -20,20 +19,4 @@ in {
corefonts
(nerdfonts.override { fonts = [ "FiraCode" ]; })
];
# Systemd user services
# See https://wiki.nixos.org/wiki/Systemd/User_Services for more information
systemd.user.services = {
ktailctl = {
enable = true;
after = [ "network.target" ];
wantedBy = [ "default.target" ];
description =
"A GUI to monitor and manage Tailscale on your Linux desktop, built using KDE Frameworks and Kirigami2.";
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.ktailctl}/bin/ktailctl";
};
};
};
}

View file

@ -38,7 +38,6 @@
nixfmt
forgejo-runner # for some reason this installs forgejo-runner as act_runner
libwebp
fontforge
# python stuff 🐍
uv

View file

@ -5,6 +5,6 @@
# with the contents of your Tailscale auth key.
# Make sure your permissions are set correctly, e.g. 0600.
authKeyFile = "/run/secrets/tailscale";
extraUpFlags = [ "--ssh" "--accept-routes" "--accept-dns" "--operator=cswimr" ];
extraUpFlags = [ "--ssh" ];
};
}