updates from makefile

This commit is contained in:
Don Harper 2023-12-19 14:35:38 -06:00
parent 7a31f31a1c
commit fc07ec08cc
3 changed files with 16 additions and 15 deletions

18
flake.lock generated
View file

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1702203126,
"narHash": "sha256-4BhN2Vji19MzRC7SUfPZGmtZ2WZydQeUk/ogfRBIZMs=",
"lastModified": 1702937117,
"narHash": "sha256-4GjkL2D01bDg00UZN/SeGrnBZrDVOFeZTbQx6U702Vc=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "defbb9c5857e157703e8fc7cf3c2ceb01cb95883",
"rev": "e8aaced73ebaf6bfa8e3c6ab0a19cb184bc4d798",
"type": "github"
},
"original": {
@ -23,11 +23,11 @@
},
"nixos-hardware": {
"locked": {
"lastModified": 1702245580,
"narHash": "sha256-tTVRB42Ljo2uWGP7ei5h5/qQjOsdXoz0GHRy9hrVrdw=",
"lastModified": 1702453208,
"narHash": "sha256-0wRi9SposfE2wHqjuKt8WO2izKB/ASDOV91URunIqgo=",
"owner": "NixOS",
"repo": "nixos-hardware",
"rev": "030edbb68e69f2b97231479f98a9597024650df2",
"rev": "7763c6fd1f299cb9361ff2abf755ed9619ef01d6",
"type": "github"
},
"original": {
@ -39,11 +39,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1702151865,
"narHash": "sha256-9VAt19t6yQa7pHZLDbil/QctAgVsA66DLnzdRGqDisg=",
"lastModified": 1702830618,
"narHash": "sha256-lvhwIvRwhOLgzbRuYkqHy4M5cQHYs4ktL6/hyuBS6II=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "666fc80e7b2afb570462423cb0e1cf1a3a34fedd",
"rev": "91a00709aebb3602f172a0bf47ba1ef013e34835",
"type": "github"
},
"original": {

View file

@ -1,13 +1,13 @@
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, inputs, ... }:
with config;
{
xdg.configFile =
{
#"sway/config".source = files/sway/default;
"sway/config".source =
if (builtins.getEnv "HOSTNAME_SHORT" == "pocket2")
then files/sway/pocket2
else files/sway/default;
"sway/config".source = files/sway/default;
#"sway/config".source =
# if ( inputs.config.networking.hostName == "pocket2")
# then files/sway/pocket2
# else files/sway/default;
};
programs.swaylock = {
enable = true;

View file

@ -6,6 +6,7 @@ let
pipx
python-dateutil
setuptools
requests
];
python-with-my-packages = pkgs.python3Full.withPackages my-python-packages;
in