Add wallpapers as flake input to remove need for checking out repo locally

This commit is contained in:
Evie Litherland-Smith 2023-06-23 14:14:18 +01:00
parent b2a734cc9e
commit 8a908cd539
5 changed files with 29 additions and 9 deletions

View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1687473300, "lastModified": 1687506590,
"narHash": "sha256-4LflQpktYFiub8xVhEN9EZf1cYsr09md01rBJZRCGCc=", "narHash": "sha256-CSou9mrG9h/WVRjCptfTrATVxvhmtdQXElmWV/ZkrAs=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "70ac18872a5f1a57a4546ff58888bf67a8bbb5b3", "rev": "d2b6f2d154bf6b27a93ed895392f80c503df7cfa",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -39,7 +39,23 @@
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"wallpapers": "wallpapers"
}
},
"wallpapers": {
"locked": {
"lastModified": 1687523055,
"narHash": "sha256-cxHi2WKSLqWMnIVD048InXrazy1/Jz7T+8Oo5uOiqS0=",
"ref": "refs/heads/main",
"rev": "1cd9f378d2989919fcb9e65ea944bfdae31b1a98",
"revCount": 2,
"type": "git",
"url": "https://git.xenia.me.uk/xenia/wallpapers.git"
},
"original": {
"type": "git",
"url": "https://git.xenia.me.uk/xenia/wallpapers.git"
} }
} }
}, },

View file

@ -7,12 +7,13 @@
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
wallpapers.url = "git+https://git.xenia.me.uk/xenia/wallpapers.git";
}; };
outputs = { outputs = inputs @ {
self,
nixpkgs, nixpkgs,
home-manager, home-manager,
...
}: let }: let
common = {lib, ...}: { common = {lib, ...}: {
nix = { nix = {
@ -88,6 +89,7 @@
}; };
N0245 = nixpkgs.lib.nixosSystem { N0245 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = inputs;
modules = [ modules = [
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
common common

View file

@ -58,7 +58,6 @@ in {
export QT_WAYLAND_DISABLE_WINDOWDECORATION="1"''; export QT_WAYLAND_DISABLE_WINDOWDECORATION="1"'';
config = { config = {
input."*".xkb_layout = "gb"; input."*".xkb_layout = "gb";
output."*".bg = "~/nixos/wallpaper.jpg fill";
fonts = { fonts = {
names = ["FiraCode Nerd Font" "FiraCode Nerd Font Mono"]; names = ["FiraCode Nerd Font" "FiraCode Nerd Font Mono"];
size = 12.0; size = 12.0;

View file

@ -1,7 +1,7 @@
# 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, ...}: { {pkgs, wallpapers, ...}: {
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
@ -90,7 +90,10 @@
programs.firefox.package = pkgs.firefox-wayland; programs.firefox.package = pkgs.firefox-wayland;
wayland.windowManager.sway.config = { wayland.windowManager.sway.config = {
output = {"Dell Inc. DELL U2417H 5K9YD872FY1L".transform = "270";}; output = {
"*".bg = "${wallpapers.outputs.default} fill";
"Dell Inc. DELL U2417H 5K9YD872FY1L".transform = "270";
};
startup = [{command = "firefox";} {command = "teams-for-linux";}]; startup = [{command = "firefox";} {command = "teams-for-linux";}];
workspaceOutputAssign = [ workspaceOutputAssign = [
{ {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 642 KiB