From 423c2ba668b38c7cf8f95b852463941cf0db02bf Mon Sep 17 00:00:00 2001 From: Nydragon Date: Thu, 22 Aug 2024 00:10:53 +0200 Subject: [PATCH] feat: init repo & follow documentation Following the Quickshell documentation to get started https://quickshell.outfoxxed.me/docs --- .envrc | 1 + .gitignore | 1 + .qmlformat.ini | 3 ++ flake.lock | 82 +++++++++++++++++++++++++++++++++++++++++++++ flake.nix | 39 +++++++++++++++++++++ nix/package.nix | 19 +++++++++++ src/.qmlformat.ini | 3 ++ src/Bar.qml | 25 ++++++++++++++ src/ClockWidget.qml | 5 +++ src/Time.qml | 17 ++++++++++ src/shell.qml | 5 +++ 11 files changed, 200 insertions(+) create mode 100644 .envrc create mode 100644 .gitignore create mode 100644 .qmlformat.ini create mode 100644 flake.lock create mode 100644 flake.nix create mode 100644 nix/package.nix create mode 100644 src/.qmlformat.ini create mode 100644 src/Bar.qml create mode 100644 src/ClockWidget.qml create mode 100644 src/Time.qml create mode 100644 src/shell.qml diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..44610e5 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use flake; diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9b42106 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.direnv/ diff --git a/.qmlformat.ini b/.qmlformat.ini new file mode 100644 index 0000000..7dd50c9 --- /dev/null +++ b/.qmlformat.ini @@ -0,0 +1,3 @@ +[General] +IndentWidth=4 +NewlineType=native diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..8969c4c --- /dev/null +++ b/flake.lock @@ -0,0 +1,82 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1723991338, + "narHash": "sha256-Grh5PF0+gootJfOJFenTTxDTYPidA3V28dqJ/WV7iis=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "8a3354191c0d7144db9756a74755672387b702ba", + "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", + "utils": "utils" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1710146030, + "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..ba61ae4 --- /dev/null +++ b/flake.nix @@ -0,0 +1,39 @@ +{ + description = "A very basic flake"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; + utils.url = "github:numtide/flake-utils"; + + quickshell = { + url = "git+https://git.outfoxxed.me/outfoxxed/quickshell"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + }; + + outputs = + { + nixpkgs, + utils, + quickshell, + ... + }: + utils.lib.eachDefaultSystem ( + system: + let + pkgs = nixpkgs.legacyPackages.${system}; + in + { + devShell = pkgs.mkShell { + buildInputs = [ + quickshell.packages.${system}.default + pkgs.kdePackages.qtdeclarative + ]; + }; + defaultPackage = import ./nix/package.nix { + inherit (pkgs) stdenv; + quickshell = quickshell.packages.${system}.default; + }; + } + ); +} diff --git a/nix/package.nix b/nix/package.nix new file mode 100644 index 0000000..cc2211c --- /dev/null +++ b/nix/package.nix @@ -0,0 +1,19 @@ +{ stdenv, quickshell, ... }: +stdenv.mkDerivation rec { + name = "nysh"; + + unpackPhase = ":"; + + buildPhase = '' + cat > ${name} <