1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Add udiskie

This commit is contained in:
Stefan Ellmauthaler 2022-06-10 10:02:26 +02:00
parent e51458ce36
commit a0f742dd37
Signed by: ellmau
GPG Key ID: C804A9C1B7AF8256
2 changed files with 41 additions and 24 deletions

48
flake.lock generated
View File

@ -71,11 +71,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1654775525, "lastModified": 1654838827,
"narHash": "sha256-V1gRf9hCZsSRImC3z0SqHg93m7tIdWjONSIxPh8/6wE=", "narHash": "sha256-BbugwMVfVU973dTkSbtKB3GWVZTCwG7cREOn75EYxqA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "emacs-overlay", "repo": "emacs-overlay",
"rev": "17c4af8fcb6200c894fb1351a423676ba34f7f01", "rev": "a73125db1db85e79b3c89cfd11e2c59195b6be95",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -187,10 +187,7 @@
}, },
"naersk": { "naersk": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": "nixpkgs"
"comma",
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1653413650, "lastModified": 1653413650,
@ -210,7 +207,7 @@
"nix": { "nix": {
"inputs": { "inputs": {
"lowdown-src": "lowdown-src", "lowdown-src": "lowdown-src",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs_2",
"nixpkgs-regression": "nixpkgs-regression" "nixpkgs-regression": "nixpkgs-regression"
}, },
"locked": { "locked": {
@ -244,16 +241,14 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1632864508, "lastModified": 1653087707,
"narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", "narHash": "sha256-zfno3snrzZTWQ2B7K53QHrGZwrjnJLTRPalymrSsziU=",
"owner": "NixOS", "path": "/nix/store/3g25cg20m43hvsy17d7nz0jxwk79a77w-source",
"repo": "nixpkgs", "rev": "cbd40c72b2603ab54e7208f99f9b35fc158bc009",
"rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", "type": "path"
"type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "id": "nixpkgs",
"ref": "nixos-21.05-small",
"type": "indirect" "type": "indirect"
} }
}, },
@ -352,11 +347,26 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1654622265, "lastModified": 1632864508,
"narHash": "sha256-AltUA8bPbXeRgzcDhQEURVHqQhTByxk6Xtgf+CYmEFk=", "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "11e805f9935f6ab4b049351ac14f2d1aa93cf1d3", "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-21.05-small",
"type": "indirect"
}
},
"nixpkgs_3": {
"locked": {
"lastModified": 1654758790,
"narHash": "sha256-bXimktlkjL9s8ldMzMBslxEs80cjZDqrof1g8MbhmQI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e5556c75ac012ee6e03f39a56c1c51b0f7d658c2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -374,7 +384,7 @@
"flake-utils-plus": "flake-utils-plus", "flake-utils-plus": "flake-utils-plus",
"home-manager": "home-manager", "home-manager": "home-manager",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_3",
"nixpkgs-unstable": "nixpkgs-unstable", "nixpkgs-unstable": "nixpkgs-unstable",
"simple-nixos-mailserver": "simple-nixos-mailserver", "simple-nixos-mailserver": "simple-nixos-mailserver",
"sops-nix": "sops-nix" "sops-nix": "sops-nix"

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, ...}: { config, lib, pkgs, ... }:
{ {
imports = [ imports = [
./autorandr.nix ./autorandr.nix
@ -19,8 +19,15 @@
"ssh" "ssh"
]; ];
}; };
udiskie = {
enable = true;
automount = true;
notify = true;
tray = "auto";
};
}; };
xdg = { xdg = {
enable = true; enable = true;
}; };
@ -28,7 +35,7 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
comma comma
]; ];
programs = { programs = {
alacritty = { alacritty = {
enable = true; enable = true;
@ -39,7 +46,7 @@
alt_send_esc = true; alt_send_esc = true;
}; };
}; };
direnv = { direnv = {
enable = true; enable = true;
nix-direnv.enable = true; nix-direnv.enable = true;
@ -61,5 +68,5 @@
}; };
go.enable = true; go.enable = true;
}; };
} }