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

View file

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

View file

@ -6,7 +6,6 @@ let
onlyoffice-bin onlyoffice-bin
krita krita
ytmdesktop ytmdesktop
ktailctl
wl-clipboard wl-clipboard
# we install xdg-desktop-portal-gtx so theming works from kde # we install xdg-desktop-portal-gtx so theming works from kde
xdg-desktop-portal-gtk xdg-desktop-portal-gtk
@ -20,20 +19,4 @@ in {
corefonts corefonts
(nerdfonts.override { fonts = [ "FiraCode" ]; }) (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 nixfmt
forgejo-runner # for some reason this installs forgejo-runner as act_runner forgejo-runner # for some reason this installs forgejo-runner as act_runner
libwebp libwebp
fontforge
# python stuff 🐍 # python stuff 🐍
uv uv

View file

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