This commit is contained in:
Miguel Palhas
2025-06-15 09:26:50 +01:00
parent e14bb4de17
commit bc8a219f16
9 changed files with 60 additions and 4 deletions
Generated
+3 -3
View File
@@ -693,11 +693,11 @@
"nvchad-starter": {
"flake": false,
"locked": {
"lastModified": 1744022214,
"narHash": "sha256-a7hawK5HaP8um+BkdTYwp0Rp55FkfIMXzS0gSpBxATg=",
"lastModified": 1749624485,
"narHash": "sha256-+iwm6V0N+8/ygd5GUaqbh9EYQbcyxrQeUkXYoIPKYPs=",
"owner": "naps62",
"repo": "nvchad-starter",
"rev": "6b7dbbe070129d38b3d1aabba1dd249cfd3b9932",
"rev": "437e018da894b24476bb60d58bc60cf4b05af801",
"type": "github"
},
"original": {
+4
View File
@@ -40,6 +40,10 @@
};
zen-browser.url = "github:0xc000022070/zen-browser-flake";
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell?ref=v0.1.0";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
esphome
clang-tools
];
}
+1
View File
@@ -10,6 +10,7 @@
./solidity.nix
./dev.nix
./aider.nix
./cpp.nix
];
programs = {
@@ -8,6 +8,7 @@ in
./dunst.nix
./cursor.nix
./hyprpanel.nix
./quickshell.nix
];
home.packages = with pkgs; [
@@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
quickshell
];
xdg.configFile."quickshell".source = ./quickshell;
}
@@ -0,0 +1,17 @@
import Quickshell
import QtQuick
PanelWindow {
anchors {
top: true
left: true
right: true
}
implicitHeight: 30
Text {
anchors.centerIn: parent
text: "hello world"
}
}
+18
View File
@@ -4,5 +4,23 @@
networkmanager = {
enable = true;
};
};
services.avahi = {
enable = true;
nssmdns = true;
openFirewall = true;
};
services.nfs.client.enable = true;
# environment.etc.nsswitch.text = {
# hosts = [
# "files"
# "mdns4_minimal"
# "[NOTFOUND=return]"
# "dns"
# ];
# };
}
+1 -1
View File
@@ -48,7 +48,7 @@
let
authorizedKeys = pkgs.fetchurl {
url = "https://github.com/naps62.keys";
sha256 = "sha256-QKVtVXIVxYUqpnNCJAfRow3RG4j2jkQSFOwTeDgwO7s=";
sha256 = "sha256-O5JbzK5ulPob0HIrO8DT1MxfkC9bnfBw/0GR8Xu1tjw=";
};
in
pkgs.lib.splitString "\n" (builtins.readFile authorizedKeys);