flake: cleanup

Remove quickshell template and hardware/cpu
This commit is contained in:
Charlie Root 2024-09-30 21:49:04 +02:00
commit 4c978d8119
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
10 changed files with 3 additions and 109 deletions

View file

@ -0,0 +1,3 @@
_: {
imports = [./intel.nix];
}

View file

@ -1,3 +0,0 @@
watch_file flake.nix
use flake

View file

@ -1 +0,0 @@
/.direnv

View file

@ -1,48 +0,0 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1724224976,
"narHash": "sha256-Z/ELQhrSd7bMzTO8r7NZgi9g5emh+aRKoCdaAv5fiO0=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c374d94f1536013ca8e92341b540eba4c22f9c62",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"quickshell": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1724197264,
"narHash": "sha256-kw8zZyskszCECn8Di6z7WSquBiP7UGCb3SNN5EAF6BE=",
"ref": "refs/heads/master",
"rev": "f95e7dbaf61b9868acc912896e65126bb1ee048c",
"revCount": 304,
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
},
"original": {
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs",
"quickshell": "quickshell"
}
}
},
"root": "root",
"version": 7
}

View file

@ -1,51 +0,0 @@
{
description = "Quickshell tinkering";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
nixpkgs,
quickshell,
...
}: let
systems = ["x86_64-linux" "aarch64-linux"];
forEachSystem = nixpkgs.lib.genAttrs systems;
in {
devShells = forEachSystem (system: {
default = nixpkgs.legacyPackages.${system}.mkShell {
packages = with nixpkgs.legacyPackages.${system}; [
(
quickshell.packages.${system}.default.override
{
withJemalloc = false;
withQtSvg = false;
withWayland = true;
withX11 = false;
withPipewire = true;
withPam = false;
withHyprland = false;
}
)
# dependencies
cli11
cmake
jemalloc
kdePackages.wayland
wayland
wayland-protocols
wayland-scanner
pkg-config
pipewire
qt6Packages.qtbase
qt6.qtdeclarative
];
};
});
};
}

View file

@ -1,6 +0,0 @@
import Quickshell
ShellRoot {
// Do some funny stuff here <3
}